I am rather new to Python 2.7 and Pandas. I have a bar graph and would like to add annotations like mean
, variance
, etc. I already computed above in the graph. My current graph looks like this:
Along with this line of code:
matplotlib.pyplot.title('All the observation', fontsize=16)
matplotlib.pyplot.annotate( mean, ( 0 , 0), ( 0, 14000), fontsize=16)
matplotlib.pyplot.show()
Does someone have any idea on how to add on the graph the mean etc in a proper and nice way?
Thank you in advance for your help!
Best, Viktor