We start with the model that includes no variables. Then we fit each of the possible models with just one variable. That is, we fit the model including just
income_ver, then the model including just
debt_to_income, then a model with just
credit_util, and so on. Then we examine the adjusted
\(R^2\) for each of these models:
| Add... |
income_ver |
debt_to_income |
credit_util |
bankruptcy |
|
\(R^2_{adj} = 0.05926\) |
\(R^2_{adj} = 0.01946\) |
\(R^2_{adj} = 0.06452\) |
\(R^2_{adj} = 0.00222\) |
|
|
|
|
|
|
term |
issued |
credit_checks |
|
|
\(R^2_{adj} = 0.12855\) |
\(R^2_{adj} = 0.00018\) |
\(R^2_{adj} = 0.01711\) |
|
In this first step, we compare the adjusted
\(R^2\) against a baseline model that has no predictors. The no-predictors model always has
\(R_{adj}^2 = 0\text{.}\) The model with one predictor that has the largest adjusted
\(R^2\) is the model with the
term predictor, and because this adjusted
\(R^2\) is larger than the adjusted
\(R^2\) from the model with no predictors (
\(R_{adj}^2 = 0\)), we will add this variable to our model.
We repeat the process again, this time considering 2-predictor models where one of the predictors is
term and with a new baseline of
\(R^2_{adj} = 0.12855\text{:}\)
Add term and... |
income_ver |
debt_to_income |
credit_util |
|
\(R^2_{adj} = 0.16851\) |
\(R^2_{adj} = 0.14368\) |
\(R^2_{adj} = 0.20046\) |
|
|
|
|
|
bankruptcy |
issued |
credit_checks |
|
\(R^2_{adj} = 0.13070\) |
\(R^2_{adj} = 0.12840\) |
\(R^2_{adj} = 0.14294\) |
The best second predictor,
credit_util, has a higher adjusted
\(R^2\) (0.20046) than the baseline (0.12855), so we also add
credit_util to the model.
Since we have again added a variable to the model, we continue and see whether it would be beneficial to add a third variable:
Add term, credit_util, and... |
income_ver |
debt_to_income |
|
\(R^2_{adj} = 0.24183\) |
\(R^2_{adj} = 0.20810\) |
|
|
|
|
bankruptcy |
issued |
credit_checks |
|
\(R^2_{adj} = 0.20169\) |
\(R^2_{adj} = 0.20031\) |
\(R^2_{adj} = 0.21629\) |
The model adding
income_ver improved adjusted
\(R^2\) (0.24183 from 0.20046), so we add
income_ver to the model.
We continue on in this way, next adding
debt_to_income, then
credit_checks, and
bankruptcy. At this point, we come again to the
issued variable: adding this variable leads to
\(R_{adj}^2 = 0.25843\text{,}\) while keeping all the other variables but excluding
issued leads to a higher
\(R_{adj}^2 = 0.25854\text{.}\) This means we do not add
issued. In this example, we have arrived at the same model that we identified from backward elimination.