gpt4 book ai didi

r - 如何按标题而不是绘图区域对齐多个绘图?

转载 作者:行者123 更新时间:2023-12-04 10:48:09 27 4
gpt4 key购买 nike

我正在使用 egg 对齐页面上的多个绘图。我想知道是否可以按标题对齐两列 a)c)而不是情节区域?谢谢!

代码:

library(egg)
library(grid)

p1 <- ggplot(mtcars, aes(mpg, wt, colour = factor(cyl))) +
geom_point() + ggtitle("a)")
p1

p2 <- ggplot(mtcars, aes(mpg, wt, colour = factor(cyl))) +
geom_point() + facet_wrap(~ cyl, ncol = 2, scales = "free") +
guides(colour = "none") +
theme() + ggtitle("b)")
p2

p3 <- ggplot(mtcars, aes(mpg, wt, colour = factor(cyl))) +
geom_point() + facet_grid(. ~ am, scales = "free") + guides(colour="none") +
ggtitle("c)")
p3

g1 <- ggplotGrob(p1)

g2 <- ggplotGrob(p2)

g3 <- ggplotGrob(p3)

fg1 <- gtable_frame(g1, debug = TRUE)
fg2 <- gtable_frame(g2, debug = TRUE)
fg12 <- gtable_frame(gtable_rbind(fg1, fg2),
width = unit(2, "null"),
height = unit(1, "null"))
fg3 <-
gtable_frame(
g3,
width = unit(2, "null"),
height = unit(1, "null"),
debug = TRUE
)
grid.newpage()
combined <- gtable_cbind(fg12, fg3)
grid.draw(combined)

剧情:

enter image description here

最佳答案

我通过使用 cowplot 找到了另一种方法包裹

left_col <- cowplot::plot_grid(p1 + ggtitle(""), p2 + ggtitle(""), 
labels = c('a)', 'b)'), label_size = 14,
ncol = 1, align = 'v', axis = 'lr')
cowplot::plot_grid(left_col, p3 + ggtitle(""),
labels = c('', 'c)'), label_size = 14,
align = 'h', axis = 'b')

enter image description here

另见 here

编辑:

最近开发的包 patchwork ggplot2也可以完成工作
library(patchwork)

{
p1 + {p2} + patchwork::plot_layout(ncol = 1)
} / p3 + patchwork::plot_layout(ncol = 2)

enter image description here

关于r - 如何按标题而不是绘图区域对齐多个绘图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47667729/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com