OLS Estimation and Partialling Out
OLS chooses the that minimize the sum of squared residuals in the multiple regression. The partialling-out (Frisch-Waugh-Lovell) result shows that equals the slope from regressing on the part of left over after the other regressors are removed. So each slope already controls for everything else in the model.
Why it matters
To find the clean effect of , first strip out the influence of the other variables on , keep what is unexplained, then relate to that residual. OLS does this for every coefficient at once. That residualizing is exactly what makes a slope a partial effect.
Formulas
Worked examples
You want the effect of educ on lwage net of exper using FWL by hand.
Run `regress educ exper` and `predict r_educ, resid` to get the part of schooling unrelated to experience, then `regress lwage r_educ`. The slope on r_educ matches the educ coefficient from `regress lwage educ exper`.
Common mistakes
- ✗Thinking OLS estimates each from a separate one-variable regression. It solves all coefficients jointly through the normal equations.
- ✗Believing partialling out residualizes rather than . The denominator uses the residual variation in that remains after the other regressors are removed.
- ✗Assuming you can drop a regressor with a small coefficient without affecting the others. Removing it changes the residualized variation behind the remaining slopes.
- ✗Confusing the OLS residual with the unobservable error . The residual is the fitted-model leftover, not the population error.
Revision bullets
- •OLS minimizes and solves all jointly.
- •FWL: comes from regressed on residualized against the other regressors.
- •Partialling out is what makes each slope a ceteris paribus effect.
- •If has little independent variation, is small and the slope is imprecise.
Quick check
The partialling-out interpretation says is obtained by regressing on what?
Why can a multiple-regression slope be called a partial effect?
Connected topics
Sources
- Wooldridge, Introductory Econometrics, Ch. 3Wooldridge (2019), Introductory Econometrics: A Modern Approach, 7th ed., Sec. 3.2
- Frisch & Waugh (1933)Frisch & Waugh (1933), Econometrica 1(4), 387-401