ggupset icon indicating copy to clipboard operation
ggupset copied to clipboard

Combination matrix axis for 'ggplot2' to create 'UpSet' plots

Results 18 ggupset issues
Sort by recently updated
recently updated
newest added

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

The data doesn't add up as far as I can see: ``` require(tidyverse) require(ggupset) d = tidy_movies |> filter(!duplicated(title)) |> select(title, Genres) |> mutate(Genres = map(Genres, tolower) |> map(unique), str...

Just 4 lines to change the background theming of the panel to be transparent or blank.

Hi there, I was trying to make an upset plot when I noticed that the axis inherits the aspect ratio from the global theme in a weird way, reprex below:...

Hi there! I love your package, thanks for the great work. For my application I have users switch between ggplot and interactive plotly visualisation and was wondering you'd consider supporting...

Hello, I can't figure out how to modify the theming to remove the white border on top and below of the ggupset panel. This is really only apparent when theming...

Hi! Thanks for this great package. Is it possible to use theme_combmatrix to fill different points with different colors? I currently can only figure out how to change all points...

I've been using ggupset for datasets where each datapoint has a weight, but when you set the `weight` aesthetic in `geom_bar`, the order generated by `scale_x_upset(order_by = "freq")` is still...

Hi @const-ae 👋 , Thank you so much for the `ggupset` package, I think it really helps to visualize categorical data! I've looked at previous issues and couldn't find an...

Hi, How I add information about the total size of a set at the left of categories names, as the UpSetR does. I'd like to use ggupset to generate a...