Linear Regression in R
Linear Regression
Linear regression models the relationship between independent variables and a continuous dependent variable.
r
model <- lm(mpg ~ wt, data=mtcars)
Next Tutorial: Logistic Regression

