Section 3.1: Diagnostics for Predictor Variables
- Construct exploratory plots for the predictor in a simple linear regression.
Section 3.2: Residuals
- State the 6 most important departures from the SLRGN model.
- Explain why it is necessary to check that the SLRGN model holds before computing inferential statistics under the SLRGN model.
Section 3.3: Diagnostics for Residuals
- State the five common diagnostic plots involving the sample residuals.
- Sketch diagnostic plots for the sample residuals when the all of the assumptions of the SLRGN model are met.
- Given diagnostic plots from sample residuals, identify what departures from the SLRGN model are indicated (or not) by the diagnostic plots.
- Explain the rationale for each of the five diagnostic plots in terms of the assumptions of the SLRGN model.
Section 3.9: Transformations
- Explain why a model of the form
\[Y = \beta_{0} + \beta_{1} f(X) + \epsilon\]
is still a simple linear regression in the transformed variable \(f(X)\).
- Identify appropriate transformations of a predictor variable from a plot of the response versus the predictor.
R
- Access the residuals from an output from
lm
.
- Construct residual diagnostic plots “by hand” using functions from
ggformula
.
- Construct residual diagnostic plots using
plot
’s built-in functionality with an output from lm
.
- Fit models of the form
\[Y = \beta_{0} + \beta_{1} f(X) + \epsilon\]
using lm
where \(f\) is a polynomial or logarithmic function.