Airquality HW

Author

R Kwan

Load the library

library(tidyverse)

Load the dataset into your global environment

data("airquality")

Temp chunk

plotX <- airquality |>
  ggplot(aes(x=Ozone, y = Temp)) + 
  geom_point()
plotX
Warning: Removed 37 rows containing missing values or values outside the scale range
(`geom_point()`).