Vertical orientation

This illustrates the effect of orientation=’vertical’.

  • ../_images/sphx_glr_plot_vertical_001.png
  • ../_images/sphx_glr_plot_vertical_002.png
from matplotlib import pyplot as plt
from upsetplot import generate_data, plot

example = generate_data(aggregated=True)
plot(example, orientation='vertical')
plt.suptitle('A vertical plot')
plt.show()

plot(example, orientation='vertical', show_counts='%d')
plt.suptitle('A vertical plot with counts shown')
plt.show()

Total running time of the script: ( 0 minutes 1.049 seconds)

Gallery generated by Sphinx-Gallery