I'm plotting quite simple with
plt.plot(a,b)
plt.grid()
plt.show()
But I need a figure text. I know I can use text(x, y, my_text) but I don't always know which combinations of x and y are visible in the plot due to different plot values.
Can I instead place the text below the plot? I guess it's something like
fig = plt.figure()
fig.text(0,0,my_text)
fig.plot(a,b)