Box Plots with ggplot2
Box Plots
Box plots help detect outliers and visualize the spread of data.
r
ggplot(mtcars, aes(x=factor(cyl), y=mpg)) +
geom_boxplot()
Next Tutorial: Faceting in ggplot2

