How do I annotate both x,y points of my plotted graph using pyplot of matplotlib? I am working with python 2.7.12.
As of now I have got the labels for y axis points using the following code:
for i,j in zip(c1,c2):
fig1.annotate('%s' %j, xy=(i,j), xytext=(1,0), textcoords='offset points')