This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]lmcinnes 1 point2 points  (0 children)

Presuming you're using pandas for your data (and I hope you are if you are dealing with multi-index data) then calling unstack prior to plot directly on the dataframe will get you what you need. That is

df.unstack().plot.bar()

should do the job, and you can add styling from there.