gpt4 book ai didi

python - 为数据框中的每个组查找不同的百分位数

转载 作者:行者123 更新时间:2023-12-01 08:21:02 26 4
gpt4 key购买 nike

我的日期框架具有以下结构:

df = pd.DataFrame({'GROUP_ID': np.random.randint(1, 7, size=100),
'VALUES': np.random.randint(0, 50, size=100)})
df['THRESHOLD'] = df['GROUP_ID']*5
df = df[['GROUP_ID','VALUES','THRESHOLD']]
df.sort_values(by='GROUP_ID', inplace=True)

(这只是举例)

THRESHOLD 列实际上是每个组的百分位数(以 % 为单位)。我需要添加一列“PERCENTILE”,其中每个组中的值应该有一个百分位数数值。

我尝试使用 groupbyapply,但我不知道如何将 THRESHOLD 列的值传递给参数 q 分位数\百分位数函数。

最佳答案

使用传递给函数 transformGROUP_IDx.name 创建字典并映射阈值对于新列 quantile ,只有 0 到 1 之间的必要阈值:

np.random.seed(152)
df = pd.DataFrame({'GROUP_ID': np.random.randint(1, 7, size=100),
'VALUES': np.random.randint(0, 50, size=100)})
df['THRESHOLD'] = df['GROUP_ID'] / 15
df = df[['GROUP_ID','VALUES','THRESHOLD']]
df.sort_values(by='GROUP_ID', inplace=True)

d = dict(zip(df['GROUP_ID'], df['THRESHOLD']))
df['new'] = df.groupby('GROUP_ID')['VALUES'].transform(lambda x: x.quantile(d[x.name]))
print (df.head(20))
GROUP_ID VALUES THRESHOLD new
23 1 17 0.066667 7.733333
53 1 9 0.066667 7.733333
39 1 43 0.066667 7.733333
57 1 15 0.066667 7.733333
36 1 47 0.066667 7.733333
59 1 17 0.066667 7.733333
28 1 4 0.066667 7.733333
63 1 33 0.066667 7.733333
18 1 12 0.066667 7.733333
12 1 27 0.066667 7.733333
47 1 43 0.066667 7.733333
81 1 45 0.066667 7.733333
91 1 45 0.066667 7.733333
5 1 8 0.066667 7.733333
83 1 26 0.066667 7.733333
61 2 39 0.133333 4.200000
95 2 33 0.133333 4.200000
44 2 22 0.133333 4.200000
42 2 34 0.133333 4.200000
41 2 48 0.133333 4.200000

关于python - 为数据框中的每个组查找不同的百分位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54649063/

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