Introduction to R Programming
Simple Linear Regression
Equation: yi = a + bxi + ei
(Check assumption after testing)
Assumptions of the Simple Linear Regression Model:
- linear relationship between x and the expected value of y
- independence between any given (xi, yi) pair and any given (xj, yj) pair
- error terms e is normally distributed
- error terms for all values of x has equal variance
- Predicted values for observed data
- Residuals
Interpretation:
We estimate that for every 1 unit increase in the age, the expected lung capacity will increase by 0.54485.
More Linear Regression Output
predict(mod)
resid(mod)
Residuals are actual error terms from the estimated line. residuals = yi - estimated yi
Multiple Linear Regression
R Diagnostic Plots - Checking Regression Assumptions
Diagnostic plots:
- Residuals vs. Fitted
- Normal Q-Q
- Scale-Location
- Residuals vs. Leverage
- Last Updated: Feb 14, 2025 11:54 AM
- URL: https://campusguides.lib.utah.edu/r-programming
- Print Page