A regression that produces a high can still fit badly. The coefficients summarize averages, but diagnostic plots reveal what those averages hide: curvature, heteroskedasticity, fat tails, and a handful of observations doing the heavy lifting.
What residuals are doing. Ordinary residuals are . Standardized residuals divide by an estimate of their standard deviation, so they should be roughly under the linear-model assumptions. Studentized (or deleted) residuals refit the model without observation before computing the residual, which is what you want when one point is suspected of distorting the fit.
The is the -th diagonal of the hat matrix . Points with high leverage shrink the raw residual mechanically; standardization corrects for that.
Residuals vs fitted values. Plot on the vertical axis and on the horizontal. You want a structureless horizontal band centered at zero. Three failure modes appear repeatedly.
HIGH-FREQUENCY: A U-shape or inverted U means the response is non-linear in at least one predictor. A funnel (variance growing with ) means heteroskedasticity.
Common mistakes
- Reading variance off a QQ plot. The QQ plot tells you about distributional shape, not spread across . Use the scale-location plot for variance.
- Treating high leverage as a defect. A point with but a small residual is fine; it sits at an unusual but agrees with the fit. The combination of high leverage and large is what matters.
- Confusing the added variable plot with the residual-vs-predictor plot. The added variable plot partials out other predictors on both axes. Plotting raw residuals against does not, and gives the wrong diagnostic for functional form in the multiple-regression sense.
Bottom line
- Residuals vs fitted checks the mean structure: a curved smoother flags non-linearity, a funnel flags heteroskedasticity, and a flat band near zero is the target.
- QQ plot of standardized residuals flags non-normal errors: S-shape is heavy tails (kurtosis), banana is skew, off-line endpoints are individual outliers.
- Scale-location plot isolates non-constant variance using ; a flat red line means is stable across .
- Added variable plot shows the slope of (equal to ) after partialling out other predictors; flat means adds nothing, curvature means wrong functional form.
Exam shortcut
When you see a funnel in residuals-vs-fitted plus heavy tails on the QQ plot, jump straight to a log transformation of or a gamma GLM; the same fix kills both problems. For binary or count GLMs, skip residuals-vs-fitted as your first diagnostic and go to marginal model plots, since the binary residual band tells you nothing.
The full lesson (about 2,388 words, 16 min read) adds 2 worked examples, all 6 common mistakes, a self-check, free in the app.
Learning objectives
- C8
Browse all free MAS-I lessons or jump into free MAS-I practice questions.