multiplot: Arrange Multiple Trellis or GG Plots in a Grid

View source: R/multiplot.R

multiplotR Documentation

Arrange Multiple Trellis or GG Plots in a Grid

Description

Arranges mutiple trellis plots or ggplots in a grid, automatically choosing number of rows and columns. By default, number of rows is one less than or equal to the number of columns.

Usage

multiplot(..., nrow = NULL, ncol = NULL)

Arguments

...

trellis or ggplot objects

nrow

number of rows of plots

ncol

number of columns of plots

Value

metaplot_gtable

See Also

arrangeGrob

Examples

library(lattice)
a <- xyplot(
conc ~ Time,
xlab=NULL,
ylab = NULL,
Theoph,
aspect = 1,
scales=list(draw=FALSE)
)
multiplot(a,a,a,a,a,a)
multiplot(a,a,a,a,a,a,a)
multiplot(a,a,a,a,a,a,a,a)
multiplot(a,a,a,a,a,a,a,a,a)
multiplot(a,a,a,a,a,a,a,a,a,a)
multiplot(a,a,a,a,a,a,a,a, nrow = 2)
multiplot(a,a,a,a,a,a,a,a, ncol = 4)
multiplot(a,a,a,a,a,a,a,a, ncol = 2)
multiplot(a,a,a,a,a,a,a,a, ncol = 4, nrow = 3)
multiplot(multiplot(a,a), a)

bergsmat/metaplot documentation built on Feb. 21, 2024, 1:18 p.m.