I am trying to make a scatter plot and annotate data points with different numbers from a list. So, for example, I want to plot y vs x and annotate
y
x
This might be useful when you need individually annotate in different time (I mean, not in a single for loop)
ax = plt.gca() ax.annotate('your_lable', (x,y))
where x and y are the your target coordinate and type is float/int.