ggplot2 demo

Author

xuliang

Published

June 14, 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.