Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for facet_grid #32

Open
roni-fultheim opened this issue Feb 2, 2022 · 1 comment
Open

support for facet_grid #32

roni-fultheim opened this issue Feb 2, 2022 · 1 comment

Comments

@roni-fultheim
Copy link

roni-fultheim commented Feb 2, 2022

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.

@roni-fultheim
Copy link
Author

@const-ae
Perhaps you've had a chance to look this over? My current solution is to only use x~. faceting, but I would appreciate also the side-by-side option... thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant