library(ggplot2)
# Load the data
data(mtcars)


ggplot(mtcars, aes(x=mpg))+
  geom_boxplot()