Skip to content Skip to sidebar Skip to footer

Pandas: Qcut Error: Valueerror: Bin Edges Must Be Unique:

I am trying to compute percentile of two columns using the pandas qcut method like below: my_df['float_col_quantile'] = pd.qcut(my_df['float_col'], 100, labels=False) my_df['int_co

Solution 1:

The problem is pandas.qcut chooses the bins so that you have the same number of records in each bin/quantile, but the same value cannot fall in multiple bins/quantiles.

Here is a list of solutions.

Post a Comment for "Pandas: Qcut Error: Valueerror: Bin Edges Must Be Unique:"