我希望使用ggplot2
从列表中创建一个grid.arrange
图的多个图,但在按行排列之前按列排列。
gg_list1 <- list(qplot(mpg, disp, data = mtcars),
qplot(hp, wt, data = mtcars),
qplot(qsec, wt, data = mtcars))
gg_list2 <- list(qplot(mpg, disp, data = mtcars),
qplot(hp, wt, data = mtcars),
qplot(qsec, wt, data = mtcars))
我知道我可以这样做:
do.call(grid.arrange,c(gg_list1,gg_list2 , ncol = 2, nrow = 3))
但它从上到下从左到右填充。
我试过这个:
do.call(grid.arrange, c(gg_list1, arrangeGrob(gg_list2, nrow = 3), ncol = 2))
但是得到Error: length(widths) == ncol is not TRUE
有什么想法吗?
答案 0 :(得分:8)
您可以使用grobs
参数传递列表,并使用as.table
参数按列填充,使用c
展平,您只需要
grid.arrange(grobs = c(gg_list1, gg_list2), ncol = 2, as.table = FALSE)
如果您想要更复杂的布局,请使用layout_matrix
参数:
my_layout <- rbind(c(1, 1:3, 4), c(1, 1:3, 4), c(1, 1:3, 5), c(1, 1:3, 6))
my_layout
## [,1] [,2] [,3] [,4] [,5]
## [1,] 1 1 2 3 4
## [2,] 1 1 2 3 4
## [3,] 1 1 2 3 5
## [4,] 1 1 2 3 6
grid.arrange(grobs = c(gg_list1, gg_list2), layout_matrix = my_layout)
有关详细信息,请参阅the arrangeGrob
vignette。