UpSetPlot
UpSetPlot copied to clipboard
example from boolean dataframe
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())