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.
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.