I am using the following setup to create a list of ggplot2 charts.
This works pretty well:
library(grid)
library(gridExtra)
library(ggplot2)
mycols <- c('year','displ')
mylist <- list()
for(item in mycols){
p <- ggplot(mpg, aes_string(x = 'hwy', y = item)) +
geom_point()
mylist[[(length(mylist) +1)]] <- p
}
ml = marrangeGrob(grob = mylist, nrow=2, ncol=1)
ggsave("P://multipage.pdf", ml, width =10, height = 5)
However, in the loop, replacing:
mylist[[(length(mylist) +1)]]
withmylist <- append(mylist, p)
as discussed here how to append an element to a list without keeping track of the index? will throw an error at theggsave
stage:
Error in
$<-.data.frame
(*tmp*
, "wrapvp", value = list(x = 0.5, y = 0.5, : replacement has 17 rows, data has 234
What is the problem here? Individually, all the charts in the list look fine.
Thanks!
This really has nothing to do with
marrangeGrob
and has to do with how you are building your list. Compare the structure of the output of these methodsNotice that they produce different structures. The
append()
adds the elements to the "root" list rather than nesting the list in the list. You can explicitly do that yourself with and extralist()
but messing with loops in R like this is rarely necessary. Better to use a built in iterator like
lapply()
orMap()
. For example