以下内容来自教程
R语言中多张图画到同一个页面上常用的函数为par()和layout()
par()函数详解
layout()函数的简单使用
但是这两个函数不适用于ggplot2;ggplot2作图如果希望把多张图放到同一个页面上基本的解决办法是使用(The basic solution is to use the gridExtra R package),主要的两个函数为grid.arrange(),arrangeGrob();然而这两个函数都有各自的缺点(说明缺点的英文暂时还没有看懂)
these functions makes no attempt at aligning the plot panels; instead, the plots are simply placed into the grid as they are, and so the axes are not aligned.
为了解决这个问题,可以使用cowplot这个Rpackage,其中包括一个函数plot_grid();然而这个包也有一个缺点
the cowplot package doesn’t contain any solution for multi-pages layout
所以就有了ggpubr包中的ggarrange()函数
a wrapper around the plot_grid() function(wrapper是什么意思呢?)
to arrange multiple ggplots over multiple pages
it can also create a common unique legend for multiple plots.
第一步安装
两种方式可以选择
1
library(devtools)
install_github("kas