Visualization Best Practices in R
Nick Strayer
Instructor


Histogram

boxplot

md_speeding

geom_histogram()x aestheticmd_speeding %>%
filter(vehicle_color == 'BLUE') %>%
ggplot(aes(x = speed)) +
geom_histogram()

Visualization Best Practices in R