support for facet_grid
Open
- Dominant language
- R
- Stars
- 399
- Forks
- 32
- PR merge metrics
- No merged PRs in 30d
Description
Hi,
When I use `facet_grid()` on the created plot the y-axis labels of the upset groups is seen for each facet.
If possible, can this be united to show the groups only once to the left?
```
tidy_movies %>%
mutate(Time = cut_interval(year, n = 3)) %>%
distinct(title, year, length, Time, .keep_all=TRUE) %>%
ggplot(aes(x=Genres)) +
geom_bar() +
scale_x_upset(order_by = "degree", n_sets = 5) +
facet_grid(.~Time)
```
Thank you
PS
I love this package! Simple and easily combined with existing code.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.