📜  pandas 聚合数据框 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:13.396000             🧑  作者: Mango

代码示例1
#The .agg method allows you to aggregate the values of each column of the 
#dataframe based on a statistic you define.
df.agg(['mean', 'std'])