agg()和聚合函数在熊猫中的区别

时间:2020-04-22 04:13:27

标签: pandas pandas-groupby

所以,我正在熊猫中进行agg()和aggregate()。并发现两者给出相似的输出。 这是为两个功能提供相似输出的代码。因此,只是想了解wat是两者之间的区别。

data = {'Name': ['Giggs', 'Tom', 'Dick', 'Harry', 'Jack', 'Jill', 'Scholes', 'Martial', 'Rashford', 'Pogba'],
        'Age': [23,21,24,21,20,10,23,45,22,35],
        'Rating': [4.23, 3.21, 2.10, 1.91, 4.32, 6.32, 4.19, 2.09, 1.09, 3.33],
        'Teams': ['Man Utd',"PSG",'Real Madrid','Real Madrid', 'Man Utd', 'Man City','Man City','PSG','Man Utd','PSG'],
        'Year': [2014, 2015, 2014, 2015, 2014, 2015, 2016, 2017, 2016, 2014]}

df = pd.DataFrame(data)


print(grouped.agg('Rating').sum())
print("------Aggregation function---")
print(grouped.aggregate('Rating').sum())

1 个答案:

答案 0 :(得分:0)

official documentation

<块引用>

aggaggregate 的别名。使用别名。

是一样的。