Best practices voor visualisaties in R
Nick Strayer
Instructor


Histogram

boxplot

md_speeding

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

Best practices voor visualisaties in R