Skip to main content

Section 8.11 Key Takeaways

  • Linear regression helps us predict one variable (Y) from another (X) using a line of best fit.
  • The equation of the line is y = mx + b, where:
    • m = slope (how much Y changes for every 1-unit change in X)
    • b = intercept (the value of Y when X = 0)
  • The slope tells us both the direction and strength of the relationship.
  • Residuals = actual - predicted values; smaller residuals = better model fit.
  • A good model has random, evenly scattered residuals (homoscedasticity).
  • RΒ² tells us how much variance in Y is explained by X.
  • Adjusted RΒ² penalizes unnecessary predictors in multiple regression models.
  • AIC helps compare models: lower AIC = better balance between fit and simplicity.
  • Parsimonious models (simpler ones that still explain the data well) are preferred.
  • Stepwise regression automatically selects the most parsimonious model using AIC.
  • Correlation shows association; regression goes further by predicting and quantifying impact.
  • Always visualize both your model fit and your residuals before interpreting results!