为什么seaborn显示这么大的间隔

问题描述 投票:0回答:1

我有一个数据集,其中 min = 0,max = 50,6。当我绘制数据分布时,seaborn 绘制了从 0 到 400 的数据。为什么?! 我以为 tahseaborn 显示从 0 到 50.6 的区间

命令:

sns.displot(june_df['Продолжительность погрузки, мин'], kde=True)

我得到了这个: enter image description here

python seaborn
1个回答
0
投票

现在我使用这个解决方案:

import matplotlib.pyplot as plt
import seaborn as sns

data = june_df['Продолжительность погрузки, мин'] 

fig, ax = plt.subplots()
sns.histplot(data, ax=ax)  # distplot is deprecate and replaced by histplot
ax.set_xlim(0,51)
ax.set_xticks(range(0,51))
plt.show()

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.