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!!