set_title
でサブプロットのタイトルを設定できます。
%matplotlib inline import matplotlib.pyplot as plt plt.style.use('seaborn-darkgrid')
fig, axes = plt.subplots(2)
axes[0].plot([2, 1, 3])
axes[0].set_title('Subplot 1')
axes[1].plot([1, 3, 2])
axes[1].set_title('Subplot 2')
fig.tight_layout()
fig.tight_layout() は、サブプロット間の位置関係を調整する関数です。これを実行しないと、タイトルが軸ラベルに重なって表示されます
コメント