cowplot
多个panel的排列
多个 panel 的排列控制
cowplot
library(cowplot)
plot_grid(p1, p2)
ggdraw() +
draw_plot(p1, xstart, ystart, WidthRatio, HeightRatio) +
draw_plot(p2, xstart, ystart, WidthRatio, HeightRatio)
ggpubr::ggarrange
主图与附图的组合
Arrange multiple ggplots on one graphic device
简书:R使用笔记: ggplot2的一顿骚操作…