Home › Forums › Ask Anything Random Here › How to create bins when doing credit score validation using decile analysis?
-
How to create bins when doing credit score validation using decile analysis?
-
When doing credit score validation using decile analysis, how to create bins ?
- Divide credit score into 10 bins. Or
- Sort data by credit score first, and then divide all samples into 10 bins?
With (1), each bin may have different number of samples
With (2), samples with the same credit score may go to adjacent bins.
BTW, in reality, is it possible to have credit score of ZERO?
Thanks!
- This discussion was modified 4 years ago by Jennifer.
-
Credit score of zero or negative is theoretically possible because we can choose PDO or offset to scale a predicted probability to any wanted score range
But actually, it’s always more convenient for us to set score range between 100 —1000. In this case, zero or a negative score are not real scores they are just special value codes, meaning no score or sth else. We need exclude these rows from our analysis
To create the decile we divide it into approximately equal size bins based on the score. In Python we can use qcut() function to do it. In SAS use Proc Rank
Log in to reply.