UpSetPlot icon indicating copy to clipboard operation
UpSetPlot copied to clipboard

Add "Set size" or similar xlabel on set totals plot

Open jnothman opened this issue 3 years ago • 1 comments

jnothman avatar Aug 04 '21 00:08 jnothman

FYI: If one wants to add this manually, the following works:

from matplotlib import pyplot as plt
from upsetplot import generate_counts, plot

example = generate_counts()

axes = plot(example)
axes['totals'].set_xlabel("Set size")
plt.show()

RafaelWO avatar Nov 11 '21 07:11 RafaelWO

Now an example in the example gallery

jnothman avatar Dec 28 '23 14:12 jnothman