ggplot2 demo

Author

Norah Jones

Published

May 22, 2021

Air Quality

Figure 1 further explores the impact of temperature on ozone level.

Code
library(ggplot2)

ggplot(airquality, aes(Temp, Ozone)) + 
  geom_point() + 
  geom_smooth(method = "loess")
Figure 1: Temperature and ozone level.