我正在写R ggplot,我正在用grid.arrange
安排多个情节。
有没有办法在两个情节之间添加一些单词?我希望输出像红色的单词一样。
谢谢你的帮助:)
library(ggplot2)
library(gridExtra)
P1 <- ggplot(mtcars, aes(x = mpg)) +
geom_histogram()
P2 <- ggplot(mtcars, aes(x = wt)) +
geom_histogram()
grid.arrange(P1, *I want to add some information here*,P2, ncol = 1, nrow = 2)
2条答案
按热度按时间tgabmvqs1#
您可以使用
grid
库中的grid.text
函数,如下所示rhfm7lfc2#
一种方法是创建另一个只包含所需文本的
ggplot
,并在cowplot::plot_grid
中使用它