library(tidyverse)
data("mpg", package = "ggplot2")
data("starwars", package = "dplyr")
# We want quick histograms to explore our data
p1 <- ggplot(mpg, aes(x = hwy)) + geom_histogram()
p2 <- ggplot(mpg, aes(x = cty)) + geom_histogram()
p3 <- ggplot(starwars, aes(x = height)) + geom_histogram()



