plot a list of ggplot objects using patchwork, similar to `cowplot::plot_grid(plotlist)`
plot_list(
...,
gglist = NULL,
ncol = NULL,
nrow = NULL,
byrow = NULL,
widths = NULL,
heights = NULL,
guides = NULL,
labels = NULL,
tag_levels = NULL,
tag_size = 14,
design = NULL,
output = "patchwork"
)
composite plot
list of plots to be arranged
(optional) list of plots
number of columns
number of rows
If "FALSE" the plots will be filled in in column-major order
relative widths
relative heights
A string specifying how guides should be treated in the layout.
manual specified labels to label plots
format to label plots, will be disable if 'labels' is not NULL
size of tags
specification of the location of areas in the layout
one of 'gglist' or 'patchwork'
Guangchuang Yu