
Set up a gtable layout to place multiple grobs on a page.
arrangeGrob(..., grobs = list(...), layout_matrix, vp = NULL,
name = "arrange", as.table = TRUE, respect = FALSE, clip = "off",
nrow = NULL, ncol = NULL, widths = NULL, heights = NULL, top = NULL,
bottom = NULL, left = NULL, right = NULL, padding = unit(0.5, "line"))grid.arrange(..., newpage = TRUE)
marrangeGrob(grobs, ..., ncol, nrow, layout_matrix = matrix(seq_len(nrow *
ncol), nrow = nrow, ncol = ncol), top = quote(paste("page", g, "of",
npages)))
grobs, gtables, ggplot or trellis objects
list of grobs
optional layout
viewport
argument of gtable
logical: bottom-left to top-right (TRUE) or top-left to bottom-right (FALSE)
argument of gtable
argument of gtable
argument of gtable
argument of gtable
argument of gtable
argument of gtable
optional string, or grob
optional string, or grob
optional string, or grob
optional string, or grob
unit of length one, margin around annotations
open a new page
arrangeGrob returns a gtable.
marrangeGrob returns a list of class arrangelist
arrangeGrob
: return a grob without drawing
grid.arrange
: draw on the current device
marrangeGrob
: interface to arrangeGrob that can dispatch on multiple pages
Using marrangeGrob, if the layout specifies both nrow and ncol, the list of grobs can be split into multiple pages. On interactive devices print opens new windows, whilst non-interactive devices such as pdf call grid.newpage() between the drawings.
# NOT RUN {
library(grid)
grid.arrange(rectGrob(), rectGrob())
# }
# NOT RUN {
library(ggplot2)
pl <- lapply(1:11, function(.x) qplot(1:10, rnorm(10), main=paste("plot", .x)))
ml <- marrangeGrob(pl, nrow=2, ncol=2)
## non-interactive use, multipage pdf
ggsave("multipage.pdf", ml)
## interactive use; open new devices
ml
# }
Run the code above in your browser using DataLab