gpt4 book ai didi

python - 在 pandas 中创建一个分数列,其值取决于另一列的百分位数

转载 作者:太空宇宙 更新时间:2023-11-03 14:38:18 25 4
gpt4 key购买 nike

我有以下数据框:

User_ID Game_ID votes
1 11 1040
1 11 nan
1 22 1101
1 11 540
1 33 nan
2 33 nan
2 33 290
2 33 nan

根据 votes 列中值的百分位数,需要按照以下规则创建一个新列:

If the “votes” value is >= 75th percentile assign a score of 2

If >=25th percentile assign a score of 1

If <25th percentile assign a score of 0.

最佳答案

您可以通过调用 describe 和使用列表理解来获取百分位数:

percentiles = df.votes.describe()
df['scores'] = [2 if x >= percentiles['75%'] else (0 if x < percentiles['25%'] else 1) for x in df.votes]

关于python - 在 pandas 中创建一个分数列,其值取决于另一列的百分位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55741046/

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