Learn R Programming

patchwork

The goal of patchwork is to make it ridiculously simple to combine separate ggplots into the same graphic. As such it tries to solve the same problem as gridExtra::grid.arrange() and cowplot::plot_grid but using an API that incites exploration and iteration, and scales to arbitrarily complex layouts.

Installation

You can install patchwork from CRAN using install.packages('patchwork'). Alternatively you can grab the development version from github using devtools:

# install.packages("devtools")
devtools::install_github("thomasp85/patchwork")

Basic example

The usage of patchwork is simple: just add plots together!

library(ggplot2)
library(patchwork)

p1 <- ggplot(mtcars) + geom_point(aes(mpg, disp))
p2 <- ggplot(mtcars) + geom_boxplot(aes(gear, disp, group = gear))

p1 + p2

patchwork provides rich support for arbitrarily complex layouts with full alignment. As an example, check out this very readable code for nesting three plots on top of a third:

p3 <- ggplot(mtcars) + geom_smooth(aes(disp, qsec))
p4 <- ggplot(mtcars) + geom_bar(aes(carb))

(p1 | p2 | p3) /
      p4

Learn more

patchwork can do so much more. Check out the guides for learning everything there is to know about all the different features:

Code of Conduct

Please note that the patchwork project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('patchwork')

Monthly Downloads

235,208

Version

1.3.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

September 16th, 2024

Functions in patchwork (1.3.0)

plot_annotation

Annotate the final patchwork
patchwork-package

patchwork: The Composer of Plots
wrap_ggplot_grob

Make a gtable created from a ggplot object patchwork compliant
inset_element

Create an inset to be added on top of the previous plot
multipage_align

Align plots across multiple pages
plot_arithmetic

Plot arithmetic
plot_layout

Define the grid to compose plots in
wrap_plots

Wrap plots into a patchwork
wrap_table

Wrap a table in a patchwork compliant patch
guide_area

Add an area to hold collected guides
free

Free a plot from various alignments
patchGrob

Get a grob describing the content of a patch object
area

Specify a plotting area in a layout
plot_spacer

Add a completely blank area
wrap_elements

Wrap arbitrary graphics in a patchwork-compliant patch
align_plots

Deprecated functions
patchworkGrob

Convert a patchwork to a gtable