I couldn't find the right function to add a footnote in my plot.

The footnote I want to have is something like an explanation of one item in the legend, but it is too long to put in the legend box. So, I'd like to add a ref number, e.g. [1], to the legend item, and add the footnote in the bottom of the plot, under the x-axis.

Which function should I use? Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

One way would be just use plt.text(x,y,'text')

link|improve this answer
Oh, you are right, I forgot this... I will see if I could add it under the x-axis. Cheers. – Flake Oct 27 '11 at 16:09
4  
plt.annotate makes this much easier than plt.text. annotate lets you work in axis or figure coordinates instead of just data coordinates. It's easy to (for example) put text 20 points below the left side of the x-axis. plt.annotate('Something', (0,0), (0, -20), xycoords='axes fraction', textcoords='offset points', va='top') – Joe Kington Oct 27 '11 at 22:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.