Python Forum

Full Version: grouped bar graphs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I have the following data frame and would like to make a grouped bar graph:

BAKERY DAYTIME BREAD_SOLD
Smith Morning 124
Smith Afternoon 80
Smith Evening 90
Miller Morning 111
Miller Afternoon 70
Miller Evening 100
Wiseau Morning 50
Wiseau Afternoon 10
Wiseau Evening 20

The should result in a 9 bars, grouped in 3 groups (for each backery) of 3 bars (for each time of the day).

What's the easiest way to do this?