pandas实现groupby分组统计

Pandas怎样实现groupby分组统计
类似SQL:
select city,max(temperature) from city_weather group by city;

groupby:先对数据分组,然后在每个分组上应用聚合函数、转换函数

import pandas as pd
import numpy as np

df = pd.DataFrame({'A': ['foo', 'bar', 'foo', 'bar', 'foo', 'bar', 'foo', 'foo'],
                   'B': ['one', 'one', 'two', 'three', 'two', 'two', 'one', 'three'],
                   'C': np.random.randn(8),
                   'D': np.random.randn(8)})
# 单个列groupby,查询所有数据列的统计
res = df.groupby('A').sum()
print(res)
'''
            C         D
A                      
bar  0.824350 -0.648460
foo -2.336797  1.051068
'''

# 多个列groupby,查询所有数据列的统计
res2 = df.groupby(["A", "B"]).mean()
print(res2)
'''
                  C         D
A   B                        
bar one    0.178278  1.291439
    three -1.802238 -0.349516
    two    0.077436 -0.133885
foo one    0.612781 -0.222823
    three  0.346936 -1.194908
    two   -0.201423  0.414962
'''

res3 = df.groupby(['A','B'], as_index=False).mean()
print(res3)
'''
     A      B         C         D
0  bar    one -1.120294 -0.374252
1  bar  three -1.468270 -0.520066
2  bar    two -0.654800  0.841732
3  foo    one -0.094773 -1.547075
4  foo  three -2.190413  0.421233
5  foo    two -0.933326 -0.778788
'''

# 同时查看多种数据统计
res4 = df.groupby('A').agg([np.sum, np.mean, np.std])
print(res4)
'''
            C                             D                    
          sum      mean       std       sum      mean       std
A                                                              
bar  0.085034  0.028345  0.893999  0.736753  0.245584  1.329135
foo  0.969839  0.193968  0.753646 -1.305077 -0.261015  0.866502
'''

# 查看单列的结果数据统计
# 方法1:预过滤,性能更好
res5 = df.groupby('A')['C'].agg([np.sum, np.mean, np.std])
print(res5)
'''
          sum      mean       std
A                                
bar -0.177244 -0.059081  0.714634
foo -0.242403 -0.048481  0.811584
'''

# 方法2
res6 = df.groupby('A').agg([np.sum, np.mean, np.std])['C']

# 不同列使用不同的聚合函数
res7 = df.groupby('A').agg({"C":np.sum, "D":np.mean})
print(res7)
'''
            C         D
A                      
bar  1.809787  0.441989
foo  2.049895  0.798035
'''

实例分组探索天气数据

# 实例分组探索天气数据
df_tq = pd.read_csv("./pandas/ant-learn-pandas/datas/beijing_tianqi/beijing_tianqi_2018.csv", engine='python',
                 encoding='utf-8')
print(df_tq.head())
# 替换掉温度的后缀℃
df_tq.loc[:, "bWendu"] = df_tq["bWendu"].str.replace("℃", "").astype('int32')
df_tq.loc[:, "yWendu"] = df_tq["yWendu"].str.replace("℃", "").astype('int32')
print(df_tq.head())

# 新增一列为月份
df_tq['month'] = df_tq['ymd'].str[:7]

# 查看每个月的最高温度
data = df_tq.groupby("month")["bWendu"].max()
print(data)
'''
month
2018-01     7
2018-02    12
2018-03    27
2018-04    30
2018-05    35
2018-06    38
2018-07    37
2018-08    36
2018-09    31
2018-10    25
2018-11    18
2018-12    10
'''

# 查看每个月的最高温度、最低温度、平均空气质量指数
group_data = df_tq.groupby('month').agg({"bWendu":np.max, "yWendu":np.min, "aqi":np.mean})
print(group_data)
'''
         bWendu  yWendu         aqi
month                              
2018-01       7     -12   60.677419
2018-02      12     -10   78.857143
2018-03      27      -4  130.322581
2018-04      30       1  102.866667
2018-05      35      10   99.064516
2018-06      38      17   82.300000
2018-07      37      22   72.677419
2018-08      36      20   59.516129
2018-09      31      11   50.433333
2018-10      25       1   67.096774
2018-11      18      -4  105.100000
2018-12      10     -12   77.354839
'''
  • 1
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值