patchwork
augment the +
operator from ggplot2
and allows the user to
add full ggplot
objects together in order to compose them into the same
view. The last added plot is always the active one where new geoms etc. are
added to. Another operator that is much like it, but not quite, is -
. It
also adds plots together but instead of adding the right hand side to the
patchwork defined in the left hand side, it puts the left hand side besides
the right hand side in a patchwork. This might sound confusing, but in
essence -
ensures that the right and left side are put in the same nesting
level (+
puts the right side into the left side). Using -
might seem
unintuitive if you think of the operator as "subtract", but look at it as a
hyphen instead (the underlying reason is that -
is the only operator in the
same precedence group as +
).
Often you are interested in creating single column or single row layouts.
patchwork
provides |
(besides) and /
(over) operators to support
stacking and packing of plots. See the exampels for their use.
In order to reduce code repetition patchwork
provides two operators for
adding ggplot elements (geoms, themes, facets, etc.) to multiple/all plots in
a patchwork. *
will add the element to all plots in the current nesting
level, while &
will recurse into nested patches.