My question is how I might be able to add more arguments to the do.call
function.
For example, I want to draw faceted grid
plots with grid.arrange
, how can I add more arguments such as ncol=3
and main="main title"
to the command do.call(grid.arrange,plots)
?
do.call(fun, c(args, list(otherargs)))
– Magnus