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.
Je voudrais organiser les parcelles en utilisant grid.arrange()
in gridExtra
.
Comment procéder si le nombre de parcelles plist
est variable?
Cela marche:
grid.arrange(plist[[1]],plist[[2]],plist[[3]],plist[[4]],plist[[5]])
mais j'ai besoin d'une solution plus générale. pensées?