Learn R Programming

kobe (version 1.3.2)

multiplot: Calculates confidence intervals for different probabiity levels for pairs of data points.

Description

A multiple plot function, allowing ggplot2 objects to be plotted together. If the layout is something like matrix(c(1,2,3,3), nrow=2, by.row=TRUE), then plot 1 will go in the upper left, 2 will go in the upper right, and 3 will go all the way across the bottom.

Borrowed with thanks from http://wiki.stdout.org/rcookbook/Graphs/Multiple

Usage

multiplot(..., plotlist=NULL, file, cols=1, layout=NULL)

Arguments

...
ggplot2 objects
plotlist
list of ggplot2 objects
file
character
cols
numeric; number of columns in layout
layout
numeric; A matrix specifying the layout. If present, 'cols' is ignored

See Also

kobePhase,kobeInterp,kobeP

Examples

Run this code

## Not run: 
# a=ggplot(data.frame(x=1:10,y=1:10))+geom_point(aes(x,y))
# multiplot(a,a)
# 
# ## End(Not run)

Run the code above in your browser using DataLab