2

Suppose I have a need to create a visualization of the following format:

enter image description here

Wherein we have multiple categories, some belonging to the same class (ie. different types of successes, different types of failures).

Is there a way in matplotlib to create a rolling graph that can be updated with new dates as they come in?

  • 1
    Does this answer your question? [Python matplotlib multiple bars](https://stackoverflow.com/questions/14270391/python-matplotlib-multiple-bars) – Khaled Barie Jul 13 '20 at 00:36

1 Answers1

0

This is a duplicate question.

TL;DR: No unfortunately it's not natively supported by matplotlib. You'll have to add multiple bar plots to the same axis, that is one for each category, and slightly changing the x values for each one so they appeare beside each other.

Khaled Barie
  • 116
  • 5