UpSetPlot icon indicating copy to clipboard operation
UpSetPlot copied to clipboard

example from boolean dataframe

Open brandonlind opened this issue 10 months ago • 0 comments

I think this example would be helpful to include in the docs.

df = pd.DataFrame({
    'col1' : [True, False, True, True],
    'col2' : [False, True, True, False]
})

upsetplot.plot(df.value_counts())

brandonlind avatar Mar 13 '25 19:03 brandonlind