複数のグラフを表示
ax=ax1
と
ax=ax2で分ける
1 2 3 4 5 6 |
df = pd.read_csv('train.csv') fig = plt.figure() ax1 = fig.add_subplot(1,2,1) ax2 = fig.add_subplot(1,2,2) sns.barplot(x="Age",y="Sex",hue='Survived',data=df, ax=ax1) sns.countplot('Sex',hue='Survived',data=df, ax=ax2) |
コメントを残す