当我们在ggplot中使用facet
选项时,我们会在标题周围找到一个漂亮的灰色框(3,4,5)。
library(ggplot2)
data(mtcars)
ggplot(mtcars, aes(cyl)) + geom_bar() + facet_wrap(~gear) + theme_bw()
当我们不使用facet
选项时,如何在图表标题周围放置一个类似的灰色框?
ggplot(mtcars, aes(cyl)) + geom_bar() + theme_bw() +
ggtitle("How do you put a grey box around me??")