我有以下情节(3行4列):
f, ((ax1, ax2, ax3, ax4), (ax5, ax6, ax7, ax8), (ax9, ax10, ax11, ax12)) = plt.subplots(3, 4, sharex = 'col', sharey = 'row')
ax1.set_title('column1')
ax1.plot([x], [y])
ax5.plot([x1],[y1])
ax9.plot([x2],[y2])
ax2.set_title('column2')
ax2.plot([x3],[x4])
ax6.plot([x5],[x6])
.....
如何在绘图窗口之外插入文本?对于每一行,我想在情节的右端写一个句子。