Consider the following dataframe, this is what it looks like on jupyter notebook:
in(1): df
out(1):
months 0 1 3 6 12
name
------------------------------------
janedoe 1.0 3.0 3.0 2.0 1.0
johndoe 3.0 2.0 3.0 1.0 1.0
tfbundy 1.0 3.0 3.0 3.0 3.0
someone 1.0 2.0 3.0 4.0 4.0
another 1.0 2.0 2.0 3.0 2.0
... ... ... ... ... ...
etc 700 rows. I wish to create a bar chart with stdev error bars where on the y-axis is the mean score (1.0, 3.0 etc) of each month column and on the x-axis are the months (0,1,3,6,12). How do I do this?
Thank you.
