min Ξ£(yα΅’ β Ε·α΅’)Β².
Squaring serves two purposes: signs are neutralized,
and large residuals are penalized disproportionately more than small ones.
The solution is unique and always yields Ξ£eα΅’ = 0.
bβ = Ξ£(xα΅’βxΜ)(yα΅’βΘ³) / Ξ£(xα΅’βxΜ)Β².
The numerator is the covariance, the denominator the variance of X.
Θ³ = bβ + bβΒ·xΜ.
RΒ² = SSR/SST β [0, 1] β proportion of explained variance.
RΒ² increases with every added predictor, even useless ones.
Adjusted RΒ² corrects for this:
adj.RΒ² = 1 β (1βRΒ²)Β·(nβ1)/(nβkβ1).
adj.RΒ² decreases when a new predictor explains less than expected by chance.
e(Y|Xβ) on e(Xβ|Xβ).
This value equals the partial slope: effect of Xβ on Y,
after the shared portion of Xβ has been removed from both.
Ξ² = b Β· (SD_X / SD_Y) β the standardized regression coefficient.
Ξ² indicates how many standard deviations Y increases
when X increases by one SD. Allows comparison of predictors
with different scales, but only within one sample.
Between studies, Ξ² values are not directly comparable due to different SDs.
Ordinary Least Squares (OLS) is the standard method for estimating
linear regression models. It finds those coefficients bβ and bβ that minimize the
sum of squared residuals:
min Ξ£(yα΅’ β Ε·α΅’)Β².
The solution follows from the normal equations:
bβ = Ξ£(xα΅’βxΜ)(yα΅’βΘ³) / Ξ£(xα΅’βxΜ)Β²bβ = Θ³ β bβΒ·xΜb = (Xα΅X)β»ΒΉ Xα΅ybβ (unstandardized): "Per +1 unit X, ΕΆ increases by bβ units, when all other predictors are held constant." The "ceteris paribus" is crucial β in the multiple model bβ is a partial effect, not a marginal raw effect.
Ξ² (standardized): Comparison of predictors on different scales. Caution: Ξ² is sample-specific and must not be compared between studies.
RΒ² = SSR/SST = 1 β RSS/SST. In the bivariate case RΒ² = rΒ².
RΒ² increases with every predictor, even random variables (Freedman's Paradox).
Adjusted RΒ² corrects for the number of predictors k:
adj.RΒ² = 1 β (1βRΒ²)Β·(nβ1)/(nβkβ1)
fΒ² = RΒ²/(1βRΒ²) β effect size for multiple regression.
Conventions (Cohen 1988): small β₯ .02, medium β₯ .15, large β₯ .35.
Better than conventions: SESOI β define the smallest effect of substantive
interest before the study.