Centered X-axis label for muliplot using cowplot package

后端 未结 2 1594
北恋
北恋 2021-02-06 04:52

I have a multiplot figure consisting of 4 plots in a 2x2 configuration. I arranged the plots using the \"cowplot\" package and the plot_grid function using the code below

2条回答
  •  北恋
    北恋 (楼主)
    2021-02-06 05:34

    This is a little late but I had the same problem so hopefully the next person to view this question will find this useful.

    library(cowplot)
    plot<-plot_grid(p1, p2, p3, p4, align='vh', vjust=1, scale = 1)
    ggdraw(add_sub(plot, "Label", vpadding=grid::unit(0,"lines"),y=6, x=0.5, vjust=4.5))
    

提交回复
热议问题