multiplot: Printing Multiple Plots in Grid

Description Arguments Examples

View source: R/multiplot.R

Description

Computes the datapoints in order to plot uncertainty elipses

Arguments

...

Series of plots

cols

number of columns (defaults to 1)

layout

specifiable layout

Examples

1
2
3
4
Data <- data.frame(x1=seq(1:10), y1=runif(10), x2=rnorm(n=10), y2=runif(10))
p1 <- ggplot(Data, aes(x=x1, y=y1)) + geom_point() + SpTheme()
p2 <- ggplot(Data, aes(x=x2, y=y2)) + geom_point() + SpTheme()
multiplot(p1, p2, cols=2)

sbujarski/SpPack documentation built on Sept. 24, 2020, 5:54 p.m.