各サブプロットの下にx軸ラベルを追加します。私はこのコードを使ってグラフを作成します:各matplotlibサブプロットのx軸ラベルを表示する方法
fig = plt.figure(figsize=(16,8))
ax1 = fig.add_subplot(1,3,1)
ax1.set_xlim([min(df1["Age"]),max(df1["Age"])])
ax1.set_xlabel("All Age Freq")
ax1 = df1["Age"].hist(color="cornflowerblue")
ax2 = fig.add_subplot(1,3,2)
ax2.set_xlim([min(df2["Age"]),max(df2["Age"])])
ax2.set_xlabel = "Survived by Age Freq"
ax2 = df2["Age"].hist(color="seagreen")
ax3 = fig.add_subplot(1,3,3)
ax3.set_xlim([min(df3["Age"]),max(df3["Age"])])
ax3.set_xlabel = "Not Survived by Age Freq"
ax3 = df3["Age"].hist(color="cadetblue")
plt.show()
これは見た目です。唯一の最初のものは、私は、各subplot
の下で異なるx軸ラベルを表示することができますどのように
示して?
この投稿の名前は非常に混乱しています。これは軸の「タイトル」を指しますが、実際には、「xラベル」(x軸の下のテキスト)です。 – pathoren