mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
53 lines
590 B
Markdown
53 lines
590 B
Markdown
|
|
# Wrapping
|
||
|
|
|
||
|
|
Wrapping
|
||
|
|
|
||
|
|
## Usage
|
||
|
|
|
||
|
|
``` r
|
||
|
|
wrap_plot_list(
|
||
|
|
data,
|
||
|
|
tag_levels = NULL,
|
||
|
|
title = NULL,
|
||
|
|
axis.font.family = NULL,
|
||
|
|
guides = "collect",
|
||
|
|
axes = "collect",
|
||
|
|
axis_titles = "collect",
|
||
|
|
...
|
||
|
|
)
|
||
|
|
```
|
||
|
|
|
||
|
|
## Arguments
|
||
|
|
|
||
|
|
- data:
|
||
|
|
|
||
|
|
list of ggplot2 objects
|
||
|
|
|
||
|
|
- tag_levels:
|
||
|
|
|
||
|
|
passed to patchwork::plot_annotation if given. Default is NULL
|
||
|
|
|
||
|
|
- title:
|
||
|
|
|
||
|
|
panel title
|
||
|
|
|
||
|
|
- guides:
|
||
|
|
|
||
|
|
passed to patchwork::wrap_plots()
|
||
|
|
|
||
|
|
- axes:
|
||
|
|
|
||
|
|
passed to patchwork::wrap_plots()
|
||
|
|
|
||
|
|
- axis_titles:
|
||
|
|
|
||
|
|
passed to patchwork::wrap_plots()
|
||
|
|
|
||
|
|
- ...:
|
||
|
|
|
||
|
|
passed to patchwork::wrap_plots()
|
||
|
|
|
||
|
|
## Value
|
||
|
|
|
||
|
|
list of ggplot2 objects
|