So far i have placed my suptitles above the frame, like this:
How can i ge
Have you considered axes.title? You can see the documentation for it here. You can also pass x and y coordinates as keyword arguments ax.title("my title", x=0.5, y=0.6).
axes.title
ax.title("my title", x=0.5, y=0.6)
Hope this helps.