library(ggplot2)
df <- data.frame(x=1:10, y=rnorm(10))
p1 <- ggplot(df, aes(x,y)) + geom_point()
plist <- list(p1,p1,p1,p1,p1)
# In my real example,a plot function will fit a ggplot to a list of datasets
#and return a list of ggplots like the example above.
我想安排在gridExtra
中使用grid.arrange()
的地塊。如何使用grid.arrange來安排變量列表的圖表?
如果plist
中的地塊數量是可變的,我該如何做到這一點?
這工作: grid.arrange(plist[[1]],plist[[2]],plist[[3]],plist[[4]],plist[[5]])
,但我需要一個更通用的解決方案。想法?
這是'?grid.arrange' – baptiste