gpt4 book ai didi

python - 在 Seaborn 中绘图时 Python 代码出错

转载 作者:行者123 更新时间:2023-12-01 14:21:57 29 4
gpt4 key购买 nike

我正在尝试使用 seaborn 在 python 中绘制分布图.但是我收到了下面给出的我无法解决的错误。

代码:
sns.distplot(df['nn'])
错误:
cannot convert float NaN to integer
有没有什么有效的方法可以通过绘制直方图和分布来解决这个问题?

最佳答案

这是因为您的“nn”变量中有缺失值,而 seaborn distplot 不处理缺失值,您可以在绘图时删除缺失值:

df = pd.DataFrame([1,1,2,3,4,5,6,6,6,6,np.nan], columns = ["nn"])
sns.distplot(df['nn'].dropna())

这会给你的 plotly :
enter image description here

关于python - 在 Seaborn 中绘图时 Python 代码出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49000141/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com