patchwork icon indicating copy to clipboard operation
patchwork copied to clipboard

The Composer of ggplots

Results 157 patchwork issues
Sort by recently updated
recently updated
newest added

Thank you for creating patchworks to allow users an intuitive graphical interface. I ran into an error when attempting to use `wrap_plots()` on a list of **ggplots**, but unfortunately, a...

Hi I am using patchwork to combine together a bunch of ggplots and base R plots. It all seems to work fine, except when I try and save the plot...

Hi, I have a question regarding the very handy patchwork extension to ggplot2. In the following chunk, I wonder why lines that I tagged with ### give me this error:...

Adding a dpi setting to the knitr::chunk_options() ```{r} knitr::opts_chunk$set( dpi=300, collapse = TRUE, comment = "#>" ) ``` of any vignette, for example: annotation.Rmd of the patchwork package, results in...

Is there an easy way to combine tag_facets() with plot_annotation() when combining a facet plot with another plot? ``` library(ggplot2); library(tagger); library(patchwork) # Create facet_plot with tags (p1

Thanks for `patchwork`! I'm looking at a SO question (https://stackoverflow.com/q/67389256/3358272) that is suggesting the merge of a ggplot object and a base graphics `pairs` plot. While the premise of `inset_element`...

I am not sure if this is intended behavior, but it was surprising to me. I had thought that the position of `p1` and `p2` should be the same in...

Steps to reproduce: 1. Create a patchwork object and serialize it: ```r library(ggplot2) library(patchwork) p1

Dear Thomas, I really like the `plot_layout()` function you came up with! I often write something like this: `p1 + p2 + p3 + plot_layout(widths = unit(50, 'mm'), heights =...

I'm trying to combine two charts, one using `geom_col` and one using `geom_point`. I'd like them to share a legend. They share the same fill/color specification and same colors. I...