如何在R中安排和标记Plots

时间:2015-10-05 10:16:35

标签: r ggplot2 grid

我正在为出版物制作一个人物。我的所有情节都是用R中的ggplot绘制的。现在我想把它们整理成一个图。我正在使用这样的gridExtra包,但我想直接安排标签,如A),B)等。

library(ggplot2)
library(gridExtra)

c <- ggplot(mtcars, aes(factor(cyl),mpg))

P1 <- c + geom_boxplot()
P2 <- c +  geom_point()

grid.arrange(P1,P2)

结果情节

enter image description here

但我想将这些情节标记为A. B.喜欢这个

enter image description here

有办法吗?

0 个答案:

没有答案