Project 1 presentations – Monday March 11th in class, all team members must be there
Setup
# load packageslibrary(countdown)library(tidyverse)library(lubridate)library(janitor)library(colorspace)library(broom)library(fs)# set theme for ggplot2ggplot2::theme_set(ggplot2::theme_minimal(base_size =14))# set width of code outputoptions(width =65)# set figure parameters for knitrknitr::opts_chunk$set(fig.width =7, # 7" widthfig.asp =0.618, # the golden ratiofig.retina =3, # dpi multiplier for displaying HTML output on retinafig.align ="center", # center align figuresdpi =300# higher dpi, sharper image)
Working with dates
Air Quality Index
The AQI is the Environmental Protection Agency’s index for reporting air quality
Higher values of AQI indicate worse air quality
AQI levels
The previous graphic in tibble form, to be used later…