-
Notifications
You must be signed in to change notification settings - Fork 0
/
linear-regression.Rmd
19 lines (15 loc) · 1.08 KB
/
linear-regression.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Linear Regression
## Learning Objectives {-#objectives-linear-regression}
1. Explain what is meant by response and explanatory variables.
2. State the simple regression model (with a single explanatory variable).
3. Derive the least squares estimates of the slope and intercept parameters in a simple linear regression model.
4. Use `R` to fit a simple linear regression model to a data set and interpret the output.
- Perform statistical inference on the slope parameter.
- Describe the use of measures of goodness of fit of a linear regression model.
- Use a fitted linear relationship to predict a mean response or an individual response with confidence limits.
- Use residuals to check the suitability and validity of a linear regression model.
5. State the multiple linear regression model (with several explanatory variables).
6. Use `R` to fit a multiple linear regression model to a data set and interpret the output.
7. Use measures of model fit to select an appropriate set of explanatory variables.
## Theory {-#theory-linear-regression}
## `R` Practice {-#practice-linear-regression}