Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
To use a premade theme, add theme_bw() or
theme_grey() (Figure 9-5):
library(gcookbook)# For the data set# Base plotp<-ggplot(heightweight,aes(x=ageYear,y=heightIn))+geom_point()# Grey theme (the default)p+theme_grey()# Black-and-white themep+theme_bw()