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.
私が使用してプロット手配したいと思いgrid.arrange()
でをgridExtra
。
のプロット数plist
が可変の場合、どうすればよいですか?
これは機能します:
grid.arrange(plist[[1]],plist[[2]],plist[[3]],plist[[4]],plist[[5]])
しかし、もっと一般的な解決策が必要です。考え?