R Bootcamp
Class 4 preparation - ggplot2
Prepare
Look over the ggplot2 cheatsheet.
We’ll be using the basic ggplot2 structure with
ggplot()
,aes()
, and variousgeom_*()
functions likegeom_point()
,geom_bar()
, andgeom_histogram()
. Pay special attention to the aesthetics section (color, size, shape) and the faceting functionsfacet_wrap()
andfacet_grid()
.