multiplot: Multiple plot

View source: R/multiplot.R

multiplotR Documentation

Multiple plot

Description

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

Usage

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

# 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)

averissimo/loose.rock documentation built on Dec. 8, 2022, 11:53 p.m.