Hi,
How do I change the height of the ggforce::facet_zoom gap between panels?
library(tidyverse)
library(ggforce)
ggplot(iris, aes(Petal.Length, Petal.Width, colour = Species)) +
geom_point() +
facet_zoom(x = Species == 'versicolor')
Specifically, the area represented by the red arrow
Say I want to make it bigger. How would I do this?
Thanks!!
How do I change the height of the facet_zoom gap between panels?
+ theme(panel.spacing = unit(1, "cm"))
1 Like
system
Closed
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.