Airquality HW

Author

S Mukrabine

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()`).