python-带有子图的多个标题(字幕)

我在3×3网格中有一系列9个子图,每个子图都有标题.
我想为每一行添加一个标题.为此,我考虑过使用字幕.
问题是,如果我使用3个字幕,它们似乎会被覆盖,而似乎只显示最后一个字幕.

这是我的基本代码:

fig, axes = plt.subplots(3,3,sharex='col', sharey='row')

for j in range(9):
    axes.flat[j].set_title('plot '+str(j))

plt1 = fig.suptitle("row 1",x=0.6,y=1.8,fontsize=18)
plt2 = fig.suptitle("row 2",x=0.6,y=1.2,fontsize=18)
plt3 = fig.suptitle("row 3",x=0.6,y=0.7,fontsize=18)
fig.subplots_adjust(right=1.1,top=1.6)

python-带有子图的多个标题(字幕)

解决方法:

您可以修改标题和标签.检查以下根据您的代码改编的示例:

import matplotlib.pyplot as plt

fig, axes = plt.subplots(3,3,sharex='col', sharey='row')

counter = 0
for j in range(9):
    if j in [0,3,6]:
        axes.flat[j].set_ylabel('Row '+str(counter), rotation=0, size='large',labelpad=40)
        axes.flat[j].set_title('plot '+str(j))
        counter = counter + 1
    if j in [0,1,2]:
        axes.flat[j].set_title('Column '+str(j)+'\n\nplot '+str(j))
    else:
        axes.flat[j].set_title('plot '+str(j))

plt.show()

,结果为:

python-带有子图的多个标题(字幕)

上一篇:matplotlib绘制子图的几种方式


下一篇:【优化方法】牛顿法实例