grid.arrange ggplot2按列而不是按行使用列表

时间:2016-11-29 23:02:59

标签: r list ggplot2 gridextra r-grid

我希望使用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

有什么想法吗?

1 个答案:

答案 0 :(得分:8)

您可以使用grobs参数传递列表,并使用as.table参数按列填充,使用c展平,您只需要

grid.arrange(grobs = c(gg_list1, gg_list2), ncol = 2, as.table = FALSE)

grid plot

如果您想要更复杂的布局,请使用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)

complex grid plot

有关详细信息,请参阅the arrangeGrob vignette