How can I use pyplot to plot this dataframe:
Team Boys Girls
0 Sharks 5 5
1 Lions 3 7
data = {'Team': ['Sharks', 'Lions'], 'Boys': [5, 5], 'Girls': [5, 6] }
df = pd.DataFrame(data)
so that I can end up with something like this where there are two bars per team that denote the boys/girls.
It seems to be a messy process with pyplot, so if there is an easier way I am all ears.