I'm trying to create this kind of "side by side" barplot with seaborn and pandas.
this is how I create data frame:
dfs = pd.DataFrame(data={'investors': ['first','second','third'], 'stocks': [23, 123, 54], 'bonds': [54, 67, 123], 'real estate': [45, 243, 23]})
And here is barplot code:
sns.factorplot(x='investors', y='bonds', data=dfs, kind='bar')
Can anyone please help? Thanks

