Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一系列用 ggplot2 制作的线图。
我想将它们安排在一个情节中,我可以plot_grid从 cowplot 包中做到这一点。但是,由于标签(Universität 与 SP)的长度不相等,因此图未正确对齐。我想要的是网格区域沿着所有地块完全对齐。知道如何实现这一目标吗?
plot_grid
这是我的代码:
cowplot::plot_grid(plot_party, plot_educ, plot_sex, labels=c("A", "B", "C"), ncol = 1, nrow = 3)
在cowplot::plot_grid()函数中,您可以指定控制对齐的 align 参数,如下所示:
cowplot::plot_grid()
所以你需要运行:
cowplot::plot_grid(plot_party, plot_educ, plot_sex, labels = c("A", "B", "C"), ncol = 1, nrow = 3, align = "v")