multiplot: Multiple plot

Description Usage Arguments Value Examples

View source: R/multiplot.R

Description

Not mine, taken from http://www.cookbook-r.com/Graphs/Multiple_graphs_on_one_page_(ggplot2)/

Usage

1
multiplot(..., plotlist = NULL, ncol = 1, layout = NULL)

Arguments

...

ggplot objects

plotlist

ggplot objects (alternative)

ncol

Number of columns in layout

layout

A matrix specifying the layout. If present, 'ncol' is ignored

If the layout is something like matrix(c(1,2,3,3), nrow=2, byrow=TRUE),

Value

nothing

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# First plot
library(ggplot2)
p1 <- ggplot(ChickWeight, aes(x=Time, y=weight, colour=Diet, group=Chick)) +
  geom_line() +
  ggtitle("Growth curve for individual chicks")
# Second plot
p2 <- ggplot(ChickWeight, aes(x=Time, y=weight, colour=Diet)) +
  geom_point(alpha=.3) +
  geom_smooth(alpha=.2, size=1) +
  ggtitle("Fitted growth curve per diet")
multiplot(p1, p2, ncol = 2)

loose.rock documentation built on April 30, 2021, 1:06 a.m.