Adding the object we created to a plot

Place component in grammar of graphics syntax to use as a plot layer

ggplot(mpg, aes(cty, hwy)) + 
  geom_point() + 
  bestfit