library(tidyverse)Airquality HW
Load the library
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()`).
