多くのサブプロットを含む1つの図があります。
fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k')
fig.canvas.set_window_title('Window Title')
# Returns the Axes instance
ax = fig.add_subplot(311)
ax2 = fig.add_subplot(312)
ax3 = fig.add_subplot(313)
サブプロットにタイトルを追加するにはどうすればよいですか?
fig.suptitle
すべてのグラフにタイトルを追加しますax.set_title()
が、後者は存在しますが、サブプロットにタイトルを追加しません。
ご協力ありがとうございました。
編集:に関する誤植を修正しましたset_title()
。おかげでラトガーカッシーズ