pd.cut(x = dados.Renda,
bins = classes,
labels = labels,
include_lowest = True)
esta me retornando erro -->
271 # GH 26045: cast to float64 to avoid an overflow
272 if (np.diff(bins.astype("float64")) < 0).any():
--> 273 raise ValueError("bins must increase monotonically.") 274 275 fac, bins = binsto_cuts(
ValueError: bins must increase monotonically.
como posso resolver???