The real wordsTheory
Simple against multiple
Simple linear regressionOne predictor. y = b0 + b1x. The line of best fit on a scatter plot.
Multiple linear regressionTwo or more predictors. y = b0 + b1x1 + b2x2 + ... The coefficient on each is its effect holding the others constant.
R: model <- lm(mpg ~ wt + hp, data = mtcars)
summary(model)
Read the tilde as "explained by". Predictors are joined with a plus.