Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I am trying to understand Logistic Regression in relation to credit scoring model. I wish to understand the significance of "20/ln(2)" in logistic regression. Why and how is it used?

share|improve this question
4  
Could you please give a www link how 20/ln(2) is applied? Thanks! – GaBorgulya Apr 28 '11 at 12:04
Looks like a simple transformation (on a linear scale) bit.ly/klhGCr – chl Apr 28 '11 at 12:49

1 Answer

This is a common scaling factor used for credit scoring models built with logistic regression.

The interpretation of the dependent variable in logistic regression is as log odds, but in credit scoring, we like to deal in points, thus a scaling factor is applied to the log odds to convert to the point system.

A widely used convention in credit scoring is the concept of "Points to Double the Odds" (often abbreviated PDO), and this is the source of the $\ln (2)$ in the question. For example, how many points does the score change if the odds increase from 100:1 to 200:1.

A common default value for PDO is 20, because it produces credit score ranges that people tend to like.

So, the interpretation of the $20/\ln(2)$ is that for a 20-point increase in score, the odds double.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.