cowplot::plot.grid()
plot_grid(bxp, dp, bp+rremove("x.text"), labels = c("A", "B", "C"), ncol = 2, nrow...改变排列图的行列
设置面板为两行两列,其中sp占据第一行的两列,bxp以及dp置于第二行的两列
ggarrange(sp, #First row with scatter plot(sp)
ggarrange...(bxp, dp, ncol = 2, labels = c("B","C")),#Second row with box and dot plot
nrow = 2, labels = "A" #Labels...of the scatter plot)
?..., #box plot amd scatter plot
ncol=2, nrow=2, layout_matrix=rbind(c(1, 1), c(2, 3)))
?