As part of a training scheduled in the next few weeks I’ve been trying to figure out a summary outline about consumer credit scoring models. Based on a sample data set (with 10,000 records, found in ISLR and courtesy of a California bank) the following scatter plot shows, in a training subset of 6,000 thousand credit records, the relationship between balance, income (“Saldo” and “Reddito” respectively in the plot) and working status (student/non student, “Yes” or “No” in the plot) whereas the color identifies the default status (“Yes”, “No” in the chart).
Consumer credit solvency ratios are usually estimated on a statistical basis using techniques currently popularized as machine or statistical learning. By applying statistical models to individual’s features (known as predictors) like income, balance, student, zip code, sex, etc., credit management staff try to predict the default status (also known as response, in this case) of a checking account in a, say, one year time.
By twisting and turning data analysts are able to discern useful patterns to anticipate expected responses in, say, a credit policy change, for example. The density plot above shows that there are two interesting areas according to the three predictors: income doesn’t seem to affect solvency, contrary to common wisdom, whereas default rates (in orange color) are almost exclusively found in the balance area higher than 1,000 dollars. Furthermore, a higher rate of delinquencies is found the student income status, which is a lower income area too.
One of the major findings in these research examples is that it’s often (not always though) possible to find prediction models able to correctly forecast default probabilities with reasonable degrees of accuracy. The table below shows actual vs. prediction client solvency classification of a “Yes/No” default status according to an out-of-sample (the remaining 4,000) data set based on a (logistic) statistical model.
Act./Predict. | No | Yes | Sum |
---|---|---|---|
No | 96.17 | 0.45 | 96.62 |
Yes | 2.33 | 1.05 | 3.38 |
Sum | 98.50 | 1.50 | 100.00 |
Though we can’t be 100% to predict default ratios in a year time, credit bureau agencies (CRIF, in the Italian case) can and do a very good job in assigning rating categories especially considering that behavioral biases are minimized given the context: machine learning is as objective as can be. Though human bias remains at model selection level, as always.
Leave a Reply