The Simple Linear Regression (SLR) model

In this chapter, we will use the following packages:

library(tidyverse)
library(wooldridge)
model_1 <- lm(wage ~ exper, data = wage1)
rlang::f_lhs(model_1$call$formula)
wage

References