ECON 3209 · Week 11, Lecture 3 · Kerala Agricultural University
Autumn 2026
By the end of this lecture, you will be able to:
statsmodels tools to diagnose severe multicollinearityThe VIF for regressor \(X_j\) is
\[\text{VIF}_j = \frac{1}{1 - R_j^2}\]
where \(R_j^2\) comes from regressing \(X_j\) on all the other regressors.
| VIF | Interpretation |
|---|---|
| 1 | no inflation |
| 1 to 5 | mild to moderate concern |
| above 5 | important warning |
| above 10 | often considered severe |
These thresholds are rules of thumb, not universal laws. Economic theory still matters.
Ridge regression shrinks coefficients by solving
\[\hat\beta^{ridge} = (X'X + \lambda I)^{-1}X'Y\]
Ridge is mainly a prediction tool, not a standard causal estimator.
If we include \(X\) and \(X^2\), or \(D\) and \(D\times X\), collinearity may partly come from construction.
Centering creates \(X_c = X - \bar{X}\) and often improves numerical stability without changing the fitted curve.
Never treat VIF as an automatic delete button. It is a diagnostic, not a verdict.
✅ VIF measures how much multicollinearity inflates the variance of a coefficient.
✅ High VIFs are warnings that regressors overlap strongly in information content.
✅ Possible remedies include redesigning the model, collecting better data, combining variables, or using shrinkage for prediction.
✅ Dropping variables should be guided by economics, not by a mechanical threshold alone.
✅ Ridge regression trades a little bias for greater stability when prediction is the priority.
Week 12 — Heteroscedasticity
We will cover: - what heteroscedasticity is - why it matters for standard errors - how to detect it - how to use robust SEs and WLS
ECON 3209 — Kerala Agricultural University