我正在尝试将用户定义的函数pct
传递给Pandas的agg
方法,如果我仅传递该函数,但在使用字典格式定义函数时不传递该函数,则它可以工作。有人知道为什么吗?
import pandas as pd
df = pd.DataFrame([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]],
columns=['A', 'B', 'C'])
pct = lambda x: len(x)/len(df)
df.groupby('A').agg(pct)
预期返回
B C
A
1 0.333333 0.333333
4 0.333333 0.333333
7 0.333333 0.333333
但
aggs = {'B':['pct']}
df.groupby('A').agg(aggs)
返回以下错误:
AttributeError: 'SeriesGroupBy' object has no attribute 'pct'
最佳答案
有字符串'pct'
,需要通过删除pct
变量''
-lambda函数:
aggs = {'B':pct}
print(df.groupby('A').agg(aggs))
B
A
1 0.333333
4 0.333333
7 0.333333
关于python - 为什么 Pandas 给出AttributeError : 'SeriesGroupBy' object has no attribute 'pct' ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52642351/