library(ggplot2) ggplot(airquality, aes(Temp, Ozone)) + geom_point() + geom_smooth(method = "loess")
library(ggplot2) airquality |> ggplot(aes(Temp, Ozone)) + geom_point() + geom_smooth(method = "loess")
library(ggplot2) airquality |> ggplot(aes(Temp, Ozone)) + geom_point() + geom_smooth(method = "loess") + theme_minimal()