Facet header examples

Plot with facet headers

ggplot(mtcars, aes(wt, mpg)) + geom_point() + facet_grid(am ~ cyl)

plot of chunk unnamed-chunk-2

With theme_bw

ggplot(mtcars, aes(wt, mpg)) + geom_point() + facet_grid(am ~ cyl) + theme_bw()

plot of chunk unnamed-chunk-3