You can simply use figtext. You can also change the value of x and y-axes as you want.
txt="I need the caption to be present a little below X-axis"
plt.figtext(0.5, 0.01, txt, wrap=True, horizontalalignment="center", fontsize=12)
You can simply use figtext. You can also change the value of x and y-axes as you want.
txt="I need the caption to be present a little below X-axis"
plt.figtext(0.5, 0.01, txt, wrap=True, horizontalalignment="center", fontsize=12)