Add footnote under the x-axis using matplotlib
One way would be just use plt.text(x,y,'text')
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})
One way would be just use plt.text(x,y,'text')
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})