# NOT RUN {
library(ggplot2)
library(dplyr)
ggplot(oscars, aes(x = award, y = age)) +
geom_boxplot()
ggplot(oscars, aes(x = factor(birth_mo))) +
geom_bar()
oscars %>%
count(birth_pl, sort = TRUE)
# }
Run the code above in your browser using DataLab