Code has been added to clipboard!

Visualising Data With Pandas Groupby

Example
plt.clf()
df.groupby('Employee').sum().plot(kind='bar')
plt.show()