Faceting in ggplot2
Faceting
Faceting allows you to create multiple plots based on categorical variables.
r
ggplot(mtcars, aes(x=mpg, y=hp)) +
geom_point() +
facet_wrap(~cyl)
Next Tutorial: Themes

