gpt4 book ai didi

python - Pandas:将自定义函数应用于组并将结果存储在每个组的新列中

转载 作者:行者123 更新时间:2023-12-05 04:51:23 28 4
gpt4 key购买 nike

我正在尝试将自定义函数应用于 groupby 对象中的每个组,并将结果存储到每个组本身的新列中。该函数返回 2 个值,我想将这些值分别存储到每组的 2 列中。

我试过这个:

# Returns True if all values in Column1 is different.
def is_unique(x):
status = True
if len(x) > 1:
a = x.to_numpy()
if (a[0] == a).all():
status = False
return status

# Finds difference of the column values and returns the value with a message.
def func(x):
d = (x['Column3'].diff()).dropna()).iloc[0]
return d, "Calculated!"

# is_unique() is another custom function used to filter unique groups.
df[['Difference', 'Message']] = df.filter(lambda x: is_unique(x['Column1'])).groupby(['Column2']).apply(lambda s: func(s))

但我收到错误:'DataFrameGroupBy' object does not support item assignment

我不想重置索引,想使用 get_group 函数查看结果。最终数据框应如下所示:

df.get_group('XYZ')


-----------------------------------------------------------------
| Column1 | Column2 | Column3 | Difference | Message |
-----------------------------------------------------------------
| 0 A | XYZ | 100 | | |
---------------------------------- | |
| 1 B | XYZ | 20 | 70 | Calculated! |
---------------------------------- | |
| 2 C | XYZ | 10 | | |
-----------------------------------------------------------------

实现此结果的最有效方法是什么?

最佳答案

我认为你需要:

def func(x):
d = (x['Column3'].diff()).dropna()).iloc[0]
last = x.index[-1]
x.loc[last, 'Difference'] = d
x.loc[last, 'Message'] = "Calculated!"
return x

df1 = df.filter(lambda x: is_unique(x['Column1']))

df1 = df1.groupby(['Column2']).apply(func)

关于python - Pandas:将自定义函数应用于组并将结果存储在每个组的新列中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66966529/

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