How to add a footnote under the x-axis of a plot

58.9k Views Asked by At

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?

2

There are 2 best solutions below

7
On BEST ANSWER

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

1
On

You would be just use:

plt.figtext(0.5, 0.01, "one text and next text", ha="center", fontsize=18, bbox={"facecolor":"orange", "alpha":0.5, "pad":5})

enter image description here