Section 1.3: Simple Linear Regression Model with Distribution of Error Terms Unspecified
- State the model for simple linear regression when the distribution of the error terms is unspecified except for their means, variances, and covariances.
- Explain which part of the simple linear regression model is “signal” and which part is “noise.”
- State the mean and variance of the response in the simple linear regression model.
- Relate the estimators for the population slope and intercept to the ordinary least squares solutions.
Section 1.6: Estimation of Regression Functions
- State the ordinary least squares solutions for the slope and intercept of a simple linear regression.
- Compute the ordinary least squares solutions for the slope and intercept of a simple linear regression given the relevant sample statistics for \(X\) and \(Y\).
- State the objective function that is minimized to find the ordinary least squares solutions for the slope and intercept.
Section 1.7: Estimation of Error Terms Variance \(\sigma^{2}\)
- State the estimator for the noise variance \(\sigma^{2}[\epsilon] = \sigma_{\epsilon}^{2}\).
Section 1.8: Normal Error Regression Model
- Recognize “Gaussian” as a synonym for “normal”.
- Recognize the acronym “SLRGN” for “simple linear regression with Gaussian noise”
- State the population parameters of the SLRGN model.
- Draw a (rough) schematic of the SLRGN model given values for the population parameters.
- Compute the probability that the response will fall within an interval, given the population parameters of the SLRGN model and a value for the predictor.
R
- Use lm to fit a simple linear regression.
- Use makeFun from the mosaic package to turn an output from lm into a callable function.
- Extract the estimate of the noise variance from an output from lm.
- Use
pnorm
to compute probabilites for a Gaussian (“normal”) random variable.