I am using pandas and matplotlib to generate some charts.
My DataFrame:
                                             Journal    Papers per year in journal
0                Information and Software Technology    4
1  2012 International Conference on Cyber Securit...    4
2       Journal of Network and Computer Applications    4 
3                            IEEE Security & Privacy    5
4                               Computers & Security    11
My Dataframe is a result of a groupby out of a larger dataframe. What I want now, is a simple barchart, which in theory works fine with a df_groupby_time.plot(kind='bar'). However, I get this:
What I want are different colored bars, and a legend which states which color corresponds to which paper.
Playing around with relabeling hasn't gotten me anywhere so far. And I have no idea anymore on how to achieve what I want.
EDIT:
Resetting the index and plotting isn't what  I want:
df_groupby_time.set_index("Journals").plot(kind='bar')


