I have a figure created in matplotlib (time-series data) over which are a series of
matplotlib.pyplot.axvline
lines. I would like to create la
You can use something like
plt.axvline(10) plt.text(10.1,0,'blah',rotation=90)
you might have to play around with the x and y value in text to get it to align properly. You can find the more complete documentation here.
text