如何显示所有数据?现在儿童阴谋被切断了
这是我的代码:
# since it is a column and not index we need to set axis to 1
titanic_df['Personstatus'] =
titanic_df[['Age','Sex']].apply(male_female_child,axis=1)
fig = sns.FacetGrid(titanic_df, hue='Personstatus', aspect=4)
fig.map(sns.kdeplot, 'Age', shade=True)
oldest = titanic_df['Age'].max()
fig.set(xlim=(0, 80))
fig.add_legend()
答案 0 :(得分:0)
未正确更新最大轴限制的原因是sns.kdeplot
调用set_ylim
,turns off axes autoscaling by default。因此,轴将缩放到使用sns.kdeplot
绘制的第一个数据集,但随后将所有后续绘图保持在相同轴上。