patchwork
patchwork copied to clipboard
The Composer of ggplots
Hi Thomas, I was just wondering - is there a possibility to add dividing lines in between plots? If not, could that be a feature request for a later version?...
If one tries to stack two plots patchwork and one of the plots uses `facet_grid` and `theme(strip.placement = "outside")`, this messes up the placement of tick marks. ### Minimal reproducible...
Hello all, This is much more a question than an issue. I have been trying to add `geom_label` to my `patchwork` object to no avail. Thus, I have been wondering...
The following works: ```r library(ggplot2) library(patchwork) p1
This PR aims to fix #349. Briefly, when merging titles, multi-cell titles are not taken into account. It allows cases such as the reprex from #349 to merge titles. ```...
Plot tags are missing for `free()` plots when `theme(plot.tag.position = ...)` is applied. ``` free(ggplot())+(ggplot()+theme(plot.tag.position = c(0, 0)))+plot_annotation(tag_levels = 'A') ```  ``` ggplot()+free(ggplot()+theme(plot.tag.position = c(0, 0)))+plot_annotation(tag_levels...
When I'm using the `theme_solarized(light=F)` from the `ggthemes` package, the plot's background color becomes dark. And with the patchwork, I have the white borders between them. Is it possible to...
Thanks so much for your work on this incredible package! As I use patchwork more and more, I've noticed the most common change I make to patchwork plots is 'un-aligning'...
like `free(p, dir = "x")` would still align the plot in the y direction
Hi, Maybe not an issue, but I couldn't get this to work: FigA has very long y axis labels at the right side of the plot. FigB has a legend...