CHAPTER 07 · TOPIC 06
Multiple Regression
Interpret conditional coefficients, overall and individual tests, categorical predictors, confounding adjustment, and model diagnostics.
On this page
- Interpreting Multiple Regression Coefficients
- Decomposing Variation in Y
- Overall F test
- Tests for Individual Coefficients
- Relationship between Categorical Predictors and ANOVA
- Coding of dummy variables
- Why Include Confounders in the Model?
- Crude, Partially Adjusted, and Fully Adjusted Models
- Model Assumptions and Diagnostics
- Analysis and Reporting Workflow
Multiple regression analysis puts multiple explanatory variables into the same linear model and estimates the conditional association of each variable, holding other variables constant. Used for prediction, confounding adjustment, and simultaneous comparison of multiple factors.
Interpreting Multiple Regression Coefficients#
β₁ is the average weight difference associated with a 1 unit increase in age when comparing subjects of the same gender and height. β₂ is the average difference between women and the reference gender, holding age and height constant. The important difference from simple regression is the conditional interpretation of ``holding other things constant''.
Decomposing Variation in Y#
Overall F test#
| source of variation | sum of squares | degrees of freedom | mean square |
| regression | SSR | p | SSR/p |
| error | SSE | n−p−1 | SSE/(n−p−1) |
| total | SST | n−1 | — |
Tests for Individual Coefficients#
Even if the overall F is significant, it does not necessarily mean that all coefficients are significant, and even if the individual t is not significant, it may be useful as a group of variables. For joint hypotheses with multiple coefficients, partial F tests and Wald tests are used.
Relationship between Categorical Predictors and ANOVA#
A factor with J levels is represented by J−1 dummy variables, and one level is used as the reference group. The overall F test for a factor-only regression model is the same as a one-way ANOVA.
Coding of dummy variables#
| group | X₁ | X₂ | average |
| reference group | 0 | 0 | β₀ |
| group 2 | 1 | 0 | β₀+β₁ |
| group 3 | 0 | 1 | β₀+β₂ |
β1 and β2 are the differences from the reference group, respectively. Use appropriate contrasts for comparisons between different groups and overall effects, and consider multiplicity.
Why Include Confounders in the Model?#
Unadjusted coefficients can be confounded if age is related to both wealth and vision. β₁ with age is the conditional association at the same age. However, we also check linearity, interactions, measurement error, and overlap.
Crude, Partially Adjusted, and Fully Adjusted Models#
| Model | Purpose |
| Crude | Unadjusted association between exposure and outcome |
| Partially adjusted | Add key prespecified confounders and examine changes in the coefficient |
| Fully adjusted | Include variables and functional forms specified by the causal framework and analysis plan |
Model Assumptions and Diagnostics#
- Mean structure is appropriate for each continuous variable (nonlinear terms if necessary)
- Observation and error are independent
- Residual variance is approximately constant
- Residuals are generally normal in small sample inference
- Avoid severe multicollinearity; examine the VIF and condition number
- Assess uncertainty in influence points, missing data, extrapolation, and model selection
Analysis and Reporting Workflow#
- Predefine research questions, estimation targets, and variable selection
- Check distribution, missingness, correlation, and encoding
- Specify linearity and interactions in the form required for research
- Estimate overall F, coefficients, 95% confidence intervals, p-values, R² and adjusted R²
- Diagnose residuals, multicollinearity, influence points, and predictive performance
- Specify unadjusted/adjusted results, units, reference groups, and limits