gpt4 book ai didi

python - 过滤掉 np.percentile 中的零

转载 作者:太空宇宙 更新时间:2023-11-04 08:42:24 25 4
gpt4 key购买 nike

我正在尝试对 DataFrame 的列 score 进行等分。

我使用以下代码:

np.percentile(df['score'], np.arange(0, 100, 10))

我的问题是分数,有很多零。如何过滤掉这些 0 值并只对其余值进行十分位数处理?

最佳答案

使用 bool 索引过滤它们:

df.loc[df['score']!=0, 'score']

df['score'][lambda x: x!=0]

并将其传递给百分位数函数。

np.percentile(df['score'][lambda x: x!=0], np.arange(0,100,10))

关于python - 过滤掉 np.percentile 中的零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43768240/

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