pwwang / plotthis

plotthis is an R package that is built upon ggplot2 and other plotting packages.
https://pwwang.github.io/plotthis/
GNU General Public License v3.0
21 stars 1 forks source link

UpsetPlot can't handle more than 7 groups #2

Closed pwwang closed 13 hours ago

pwwang commented 21 hours ago
set.seed(8525)
data = list(
    A = sort(sample(letters, 8)),
    B = sort(sample(letters, 8)),
    C = sort(sample(letters, 8)),
    D = sort(sample(letters, 8)),
    E = sort(sample(letters, 8)),
    F = sort(sample(letters, 8)),
    G = sort(sample(letters, 8))
)

UpsetPlot(data)
Error in get_shape_data(nsets = nsets, shape_id = shape_id, type = type): No available shape are found under your settings. 
Run 'get_shapes()' to see all the available shapes.
pwwang commented 13 hours ago

@xyfqwlzoe