ECON 3209 · Week 10, Lecture 2 · Kerala Agricultural University
Autumn 2026
By the end of this lecture, you will be able to:
In the model
\[Y_i = \beta_0 + \beta_1 X_{1i} + \beta_2 X_{2i} + \cdots + \beta_k X_{ki} + \varepsilon_i\]
the coefficient \(\beta_j\) measures the expected change in \(Y\) from a one-unit increase in \(X_j\), holding all other regressors fixed.
This is the core idea of partial effect and ceteris paribus interpretation.
Suppose we estimate
\[Default_i = \beta_0 + \beta_1 Income_i + \beta_2 Collateral_i + \beta_3 LoanSize_i + \varepsilon_i\]
Always say what is held constant. Without that phrase, the interpretation is incomplete.
A standardized coefficient asks: what happens to \(Y\) in standard deviation units when \(X_j\) changes by one standard deviation?
\[\hat{\beta}_j^{std}=\hat\beta_j\left(\frac{s_{X_j}}{s_Y}\right)\]
Use standardized coefficients when: - regressors are measured in very different units - you want a rough comparison of relative importance
Do not use them to replace substantive interpretation in original units.
\[R^2 = 1 - \frac{SSR}{SST}\]
\[\bar{R}^2 = 1 - \frac{SSR/(n-k-1)}{SST/(n-1)}\]
Once you have the estimates, write out what each number means:
Econometric interpretation is about meaning + units + conditioning set.
repayment_score using income, collateral, and loan size.✅ MLR coefficients are partial effects: they describe one regressor’s effect holding the rest fixed.
✅ Interpretation always depends on the units of both the dependent variable and the regressor.
✅ Standardized coefficients are useful for rough comparisons, not as a substitute for economic meaning.
✅ \(R^2\) always rises weakly with extra regressors, but adjusted \(R^2\) penalizes unnecessary complexity.
✅ Clear reporting uses ceteris paribus language and avoids overclaiming.
Lecture 3 — Partial Effects in Python
We will cover: - building MLR models in statsmodels - reading every part of the summary table - plotting partial effects - computing scenario-based marginal effects
ECON 3209 — Kerala Agricultural University