私はお互いの隣に2つのヒストグラムを作成しようとしています。私の問題は、以下に示すように、左1、右の1まで延長されるためx
ラベルです: matplotlibで左のx軸が右のx軸に伸びないようにする方法は?
私は1つのxをプロットしたい私は、プロット
import pandas as pd
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(16,8))
ax1 = fig.add_subplot(1,1,1)
ax1.set_xlim([min(df1["Age"]),max(df1["Age"])])
ax1 = df1["Age"].hist(color="cornflowerblue")
ax2 = fig.add_subplot(1,2,2)
ax2.set_xlim([min(df2["Age"]),max(df2["Age"])])
ax2 = df2["Age"].hist(color="seagreen")
plt.show()
を設定してい方法です軸ごとにsubplot
を表示するので、最初のものにはmin(df1["Age"])
からmax(df1["Age"])
までの年齢と別のx軸が含まれます。 2番目のものにはmin(df2["Age"])
からmax(df2["Age"])
までの年齢が含まれます。どうすればいいですか