1 Load packages 2 Get the data 2.1 Alternative way to get the data 2.2 Code book 3 Exercises 4 Solutions 5 Reproducibility 1 Load packages library(tidyverse) # data wrangling 2 Get the data We’ll be analyzing the data set flights, describing the flights which started from NYC in 2013. Here’s how to get the data set: library(tidyverse) library(nycflights13) data("flights") 2.1 Alternative way to get the data Alternatively, import the data from a csv …