Skip to content
Advertisement

python qcut method to bin scores

I want to bin scores from df[‘SCORES’] into 4 bins in a new column called df[‘Remark’] as accomplished the code below (right most column in table below).

However, using the qcut method, this distributes these scores evenly in 1/4 intervals (we specify this in the code below)

JavaScript

That being the case, the only way a Remark of ‘Bad’ can occur is if either columns df[‘banned’] or df[‘charged’] are true = 1.

Is it possible to automatically program the model with code to assign any User having having either a banned or charged field as 1 with a remark of bad, and then, with the remaining users with non banned or non-charged fields, then just divying up by the remaining records by pd.qcuit(df['SCORE'],3) ?

JavaScript

Advertisement

Answer

Apply the three-way cut to the “good” data:

JavaScript

Then add another category to the category list:

JavaScript

And fill in the gaps:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement