pandas 之 group by 过程
import numpy as np
import pandas as pd
Categorizing a dataset and applying a function to each group whether an aggregation(聚合) or transformation(转换), is often a critical(关键性的) component of a data analysis workflow.
(对数据集进行分类并将函数应用于每个组,无论是聚合还是转换,通常都是数据分析的关键组成部分)
After loading, merging, and preparing a dataset, you may need to compute group statistics or possibly pivot tables for reporting or visualization purpose.
(加载、合并和准备数据集之后,可能需要计算组统计数据,或者可能需要数据透视表来进行报告或可视化.)
pandas provodes a flexible groupby interface, enabling you to slice, dice, and summarize datasets in a natural way.
One reason for the populatity of relational database SQL is the easy with wich data can be joined, filtered, transformed and aggregation.
(关系数据库SQL流行的一个原因是,它可以方便地连接、过滤、转换和聚合数据)
However, query language like SQL are somewhat constrained(受限于) in the kinds of group operations that can be perform. As you will see, with the expressiveness of Python and pandas, we can perform quite complex group operation by utilizing any function that accepts a pandas object or NumPy array. In this chapter, you will learn how to:
- Split a pandas object into piece using one or more keys(in the form of functions, array, or DataFrame column names) 使用多个键将padnas对象分割
- Calculate group summary statistics, like count, mean, or standard deviation, or a user-define function 计算组汇总统计信息,如计数、平均值、标准差或用户定义函数
- Apply within-group transformations or other manipulations like normalization, linear regression, rank or subset selection.组内转换或其他操作,如标准化,线性回归,rank, 选取子集
- Compute pivot talbe and cross-tabulations (交叉, 透视表)
- Perform quantile analysis and other statistics group analyses 分位数统计和其他分析
Aggregationg of time series data, a special use case of groupby, is refered to as resampling(重采样) in this book and will receive separate treatment in Chapter 11
GroupBy 过程
- key -> data -> split -> apply -> combine
- cj 想到了大数据的 MapReduce
Hadley Wichham, an author of many popular package for the R programmng language, coine the term(提出了一个术语) split-apply-combine for describling group oprations.
In the first stage of process, data contained in a pandas object, whether a Series, DataFrame, or otherwise, is split into groups based on one or more keys that you provide The splitting is performed on a praticular axis fo an object. For example, a DataFrame can be grouped on its rows(axis=0) or its columns(axis=1).
Once this done, a function is applied to each group, producing a new value.
Finally, the results of all those function applications are combined into a result object. The form of the resulting object will usually depend on what's being done to the data.
key -> data -> split -> apply -> combine
Each grouping key can take many forms, and the keys do not have to be all of the same type:
- A list of array of values that is the same length as the axis being grouped (等轴长的列表作为分割key)
- A value indicating a column name in a DataFrame (列字段分割)
- A dict or Series giving a correspondence(一致) between the values on the axis being grouped and the group names (字典or Series)
- A function to be invoked on axis index or the individual labels in the index (函数映射在轴索引上)
Note that the latter three methods are shortcuts for producing an array of values to be used to split up the object. Don't worry if this all seems abstract. Throughout this chapter, I will give many examples of all these methods. To get started, here is a small bablular dataset as a DataFrame:
df = pd.DataFrame({
'key1': 'a a b b a'.split(),
'key2': ['one', 'two', 'one', 'two', 'one'],
'data1': np.random.randn(5),
'data2': np.random.randn(5)
})
df
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| key1 | key2 | data1 | data2 | |
|---|---|---|---|---|
| 0 | a | one | -2.043830 | 0.364327 |
| 1 | a | two | -0.595880 | 1.066501 |
| 2 | b | one | -0.706536 | 0.936099 |
| 3 | b | two | -1.444520 | -0.561796 |
| 4 | a | one | -1.632010 | -0.188685 |
Suppose you wanted to compute the mean of the data1 column using the lables from key1(以key1分组, 计算data1的均值). There are the number of ways to do this. One is to access data1 and call groupby with the column (s Series) at key1:
grouped = df['data1'].groupby(df['key1'])
grouped
<pandas.core.groupby.groupby.SeriesGroupBy object at 0x000001EDE9DDCB00>
This grouped variable is now a GropBy object. It has not actually computed anything except for some intermediate data about the group key df['key1']. The idea is that this object has all of the infomation needed to then apply some operation to each of the groups. For example, to compute group means we can call the GroupBy's mean method:
(groupby 会生成一个对象, 并不做计算, 计算需调用方法, 然后会将其映射到各个分组中)
grouped.mean()
key1
a -1.423906
b -1.075528
Name: data1, dtype: float64
Later, I'll explain more about what happens when you call .mean(). The important things here is that the data (a Series) has been aggregate(聚合) according to the group key producing a new Series that is now indexed by unique values in the key1 column.
The result index has the name 'key1' because the DataFrame columns df['key1'] did.
If instead we had passed multiple arrays as list, we'd get something different:
"多个键进行分组索引"
means = df['data1'].groupby([df['key1'], df['key2']]).mean()
means
'多个键进行分组索引'
key1 key2
a one -1.837920
two -0.595880
b one -0.706536
two -1.444520
Name: data1, dtype: float64
Here we grouped the data using two keys, and the resulting Series now has a hierarchical consisting of the unique pairs of keys observed:
"unstack => 将S -> Df"
means.unstack()
'unstack => 将S -> Df'
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| key2 | one | two |
|---|---|---|
| key1 | ||
| a | -1.837920 | -0.59588 |
| b | -0.706536 | -1.44452 |
In this example, the group keys are all Series, though they could be any arrays of the right length.
"自定义分组"
states = np.array(['Ohio', 'California', 'California', 'Ohio', 'Ohio'])
years = np.array([2005, 2005, 2006, 2005, 2006])
df['data1'].groupby([states, years]).mean()
'自定义分组'
California 2005 -0.595880
2006 -0.706536
Ohio 2005 -1.744175
2006 -1.632010
Name: data1, dtype: float64
Frequently the grouping infomation is found in the same DataFrame as the data you want to work. In that case, you can pass column names(whether those are strings, numbers, or other Python objects) as the group keys:
通常,分组信息与要处理的数据位于相同的DaFrame中。在这种情况下,可以将列名(无论是字符串、数字还是其他Python对象)作为组键传递.
df.groupby('key1').mean()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| data1 | data2 | |
|---|---|---|
| key1 | ||
| a | -1.423906 | 0.414048 |
| b | -1.075528 | 0.187151 |
df.groupby(['key1', 'key2']).mean()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| data1 | data2 | ||
|---|---|---|---|
| key1 | key2 | ||
| a | one | -1.837920 | 0.087821 |
| two | -0.595880 | 1.066501 | |
| b | one | -0.706536 | 0.936099 |
| two | -1.444520 | -0.561796 |
You may have noticed in the first case df.groupby('key1').mean() that there is no key2 columns in the result. Because df['key2'] is not numeric data, it is said to be a nuisance column, which is therefore excluded from the result. By default, all of the numeric columns are aggregated, though it's possible to filter down to a subset, as you'll see soon.
Regardless of the objective in using groupby, a general useful GroupBy method is size which returns a Series containing group size.
df.groupby(['key1', 'key2']).size() # 分组统计
key1 key2
a one 2
two 1
b one 1
two 1
dtype: int64
Group 对象的可迭代
The GroupBy object supports iteration, generating a sequence of 2-tuples containing the group name along with the chunk of data. Consider the following:
(支持迭代, 生成包含组名和数据块的二元序列)
for name, group in df.groupby('key1'):
print(name)
print(group)
a
key1 key2 data1 data2
0 a one -2.04383 0.364327
1 a two -0.59588 1.066501
4 a one -1.63201 -0.188685
b
key1 key2 data1 data2
2 b one -0.706536 0.936099
3 b two -1.444520 -0.561796
In the case of multiple keys, the first element in the tuple will be a tuple of key values.
(在多个键的情况下, 首元素将会被作为元组值的主键)
for (k1, k2), group in df.groupby(['key1', 'key2']):
print(k1, k2)
print(group)
a one
key1 key2 data1 data2
0 a one -2.04383 0.364327
4 a one -1.63201 -0.188685
a two
key1 key2 data1 data2
1 a two -0.59588 1.066501
b one
key1 key2 data1 data2
2 b one -0.706536 0.936099
b two
key1 key2 data1 data2
3 b two -1.44452 -0.561796
Of course, you can choose to do whatever you want with the pieces of data. A recipe you may find useful is computing a dict of the data pieces as a one-line.
(按照字典分组)
pieces = dict(list(df.groupby('key1')))
pieces['b']
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| key1 | key2 | data1 | data2 | |
|---|---|---|---|---|
| 2 | b | one | -0.706536 | 0.936099 |
| 3 | b | two | -1.444520 | -0.561796 |
By default groupby groups on axis=0, but you can group on any of the other axes. For example, we could group the columns of our example df here by dtype like so:
grouped = df.groupby('key1')
for dtype, group in grouped:
print(dtype)
print(group)
a
key1 key2 data1 data2
0 a one -2.04383 0.364327
1 a two -0.59588 1.066501
4 a one -1.63201 -0.188685
b
key1 key2 data1 data2
2 b one -0.706536 0.936099
3 b two -1.444520 -0.561796
对分组对象选取子集
Indexing a GroupBy object created from a DataFrame with a column name or array of column names has the effect of column subsetting for aggregation. This means that:
df.groupby('key1')['data1']
df.groupby('key1')[['data2']]
<pandas.core.groupby.groupby.SeriesGroupBy object at 0x000001EDEEF248D0>
<pandas.core.groupby.groupby.DataFrameGroupBy object at 0x000001EDEEF24080>
Especially for large datasets, it may be desirable to aggregate only a few columns. For exmaple, in the preceding dataset, to compute means for just the data2 column and get the result as a DataFrame, we could write:
df.groupby(['key1', 'key2'])[['data2']].mean()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| data2 | ||
|---|---|---|
| key1 | key2 | |
| a | one | 0.087821 |
| two | 1.066501 | |
| b | one | 0.936099 |
| two | -0.561796 |
The object returned by this indexing operation is a grouped DataFrame if a list or array is passed or a grouped Series if only a single column name is passed as a scalar:
s_grouped = df.groupby(['key1', 'key2'])['data2']
s_grouped
<pandas.core.groupby.groupby.SeriesGroupBy object at 0x000001EDEEBD4320>
s_grouped.mean()
key1 key2
a one 0.087821
two 1.066501
b one 0.936099
two -0.561796
Name: data2, dtype: float64
按字典or序列分组
Grouping information may exist in a form other than an array. Let's consider another example DataFrame:
people = pd.DataFrame(np.random.randn(5, 5),
columns=['a', 'b', 'c', 'd', 'e'],
index=['Joe', 'Steve', 'Wes', 'Jim', 'Travis'])
people.iloc[2:3, [1, 2]] = np.nan # 第3行, 第2,3列
people # 前闭后开的还是
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| a | b | c | d | e | |
|---|---|---|---|---|---|
| Joe | -0.629941 | -0.537660 | 0.392397 | -0.489149 | -1.668533 |
| Steve | -0.941174 | 0.926352 | 0.858621 | -0.005732 | 0.289938 |
| Wes | -2.316073 | NaN | NaN | 0.765298 | 0.107972 |
| Jim | 0.169023 | -0.859168 | -0.408575 | 0.928599 | -1.519773 |
| Travis | 0.913253 | 0.851410 | 0.672238 | -0.040455 | 0.722729 |
Now, suppose I have a group correspondence for the columns and want to sum together the columns by group:
mapping = {
'a':'red', 'b':'red', 'c':'blue',
'd':'blue', 'e':'red', 'f':'orange'
}
Now, you could construct an array from this dict to pass to groupby , but instead we can just pass the dict
by_column = people.groupby(mapping, axis=1)
by_column.sum()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| blue | red | |
|---|---|---|
| Joe | -0.096752 | -2.836134 |
| Steve | 0.852889 | 0.275115 |
| Wes | 0.765298 | -2.208101 |
| Jim | 0.520024 | -2.209918 |
| Travis | 0.631783 | 2.487391 |
The same functionality holds for Series, which can be viewed as a fixed-size mappinf:
map_series = pd.Series(mapping)
map_series
a red
b red
c blue
d blue
e red
f orange
dtype: object
people.groupby(map_series, axis=1).count()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| blue | red | |
|---|---|---|
| Joe | 2 | 3 |
| Steve | 2 | 3 |
| Wes | 1 | 2 |
| Jim | 2 | 3 |
| Travis | 2 | 3 |
按函数分组
Using Python functions is a more generic way of defining a group mapping compared with a dict or Series. Any function passed as a group key will be called once per index value, with the return values being used as the group names. More concretely(具体地) consider the example DataFrame from the previous section, which has people's first names as index values. Suppose you wanted to group by the length of the names; while you could compute an array of string lengths, it's simpler to just pass the len function.
people.groupby(len).sum()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| a | b | c | d | e | |
|---|---|---|---|---|---|
| 3 | -2.776991 | -1.396828 | -0.016179 | 1.204748 | -3.080333 |
| 5 | -0.941174 | 0.926352 | 0.858621 | -0.005732 | 0.289938 |
| 6 | 0.913253 | 0.851410 | 0.672238 | -0.040455 | 0.722729 |
Mixing functions with arrays, dicts, or Series is not a problem as everything gets convrted to arrays interanlly:
key_list = ['one', 'one', 'one', 'two', 'two']
people.groupby([len, key_list]).min()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| a | b | c | d | e | ||
|---|---|---|---|---|---|---|
| 3 | one | -2.316073 | -0.537660 | 0.392397 | -0.489149 | -1.668533 |
| two | 0.169023 | -0.859168 | -0.408575 | 0.928599 | -1.519773 | |
| 5 | one | -0.941174 | 0.926352 | 0.858621 | -0.005732 | 0.289938 |
| 6 | two | 0.913253 | 0.851410 | 0.672238 | -0.040455 | 0.722729 |
按索引层次分组
A final convenience for hierarchically indexed datasets is the ability to aggregate using one of the levels of an axis index. Let's look at an example:
"多层索引"
columns = pd.MultiIndex.from_arrays([['US', 'US', 'US', 'JP', 'JP'],
[1, 3, 5, 1, 3]],
names=['cty', 'tenor'])
hier_df = pd.DataFrame(np.random.randn(4, 5), columns=columns)
hier_df
'多层索引'
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead tr th {
text-align: left;
}
| cty | US | JP | |||
|---|---|---|---|---|---|
| tenor | 1 | 3 | 5 | 1 | 3 |
| 0 | -1.215596 | 1.387763 | 2.339534 | 1.593265 | -1.508100 |
| 1 | 1.519981 | 0.756772 | 0.855458 | 0.403545 | 0.538324 |
| 2 | -2.079601 | -0.487087 | 2.686048 | 1.471465 | 0.206721 |
| 3 | -0.165285 | 0.374494 | -1.994196 | -0.345347 | 2.343612 |
To group by level, pass the level number or name using the level keyword:
hier_df.groupby(level='cty', axis=1).count()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
| cty | JP | US |
|---|---|---|
| 0 | 2 | 3 |
| 1 | 2 | 3 |
| 2 | 2 | 3 |
| 3 | 2 | 3 |
pandas 之 group by 过程的更多相关文章
- pandas分组group
Pandas对象可以分成任何对象.有多种方式来拆分对象,如 - obj.groupby(‘key’) obj.groupby([‘key1’,’key2’]) obj.groupby(key,axis ...
- pandas对excel处理过程中的总结
在处理excel数据时需要将一组具有相同标签值的数据给按标签抽取出来,同样的标签值对应着同一个类别,这项操作让我对pandas的聚合功能有了更深刻的认识. 所谓聚合groupby,实际上是指将向量或者 ...
- Pandas Learning
Panda Introduction Pandas 是基于 NumPy 的一个很方便的库,不论是对数据的读取.处理都非常方便.常用于对csv,json,xml等格式数据的读取和处理. Pandas定义 ...
- 用scikit-learn和pandas学习线性回归
对于想深入了解线性回归的童鞋,这里给出一个完整的例子,详细学完这个例子,对用scikit-learn来运行线性回归,评估模型不会有什么问题了. 1. 获取数据,定义问题 没有数据,当然没法研究机器学习 ...
- scikit-learn 和pandas 基于windows单机机器学习环境的搭建
很多朋友想学习机器学习,却苦于环境的搭建,这里给出windows上scikit-learn研究开发环境的搭建步骤. Step 1. Python的安装 python有2.x和3.x的版本之分,但是很多 ...
- MySQL Group Replication 技术点
mysql group replication,组复制,提供了多写(multi-master update)的特性,增强了原有的mysql的高可用架构.mysql group replication基 ...
- 细细探究MySQL Group Replicaiton — 配置维护故障处理全集
本文主要描述 MySQL Group Replication的简易原理.搭建过程以及故障维护管理内容.由于是新技术,未在生产环境使用过,本文均是虚拟机测试,可能存在考虑不周跟思路有误 ...
- 深入理解pandas读取excel,txt,csv文件等命令
pandas读取文件官方提供的文档 在使用pandas读取文件之前,必备的内容,必然属于官方文档,官方文档查阅地址 http://pandas.pydata.org/pandas-docs/versi ...
- 教程 | 一文入门Python数据分析库Pandas
首先要给那些不熟悉 Pandas 的人简单介绍一下,Pandas 是 Python 生态系统中最流行的数据分析库.它能够完成许多任务,包括: 读/写不同格式的数据 选择数据的子集 跨行/列计算 寻找并 ...
随机推荐
- SDOI2010选做
Round1 D1T1外星千足虫 \(BSOJ2793\)--高斯消元解异或方程组 简述 有\(n\)个数\(\{a_i\}\) 给出\(m\)个信息,每个信息给出\(\displaystyle{(\ ...
- ES6新增的数组方法
ES6新增:(IE9级以上支持) 1.forEach():遍历数组,无返回值,不改变原数组. 2.map():遍历数组,返回一个新数组,不改变原数组. 3.filter():过滤掉数组中不满足条件的值 ...
- 在eclipse中新建java问题报错:The type XXX cannot be resolved. It is indirectly referenced from required .class files
在Eclipse中遇到The type XXX cannot be resolved. It is indirectly referenced from required .class files错误 ...
- pv删除不掉
[root@master pv]# kubectl get pv NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS ...
- prometheus自定义监控指标——入门
grafana结合prometheus提供了大量的模板,虽然这些模板几乎监控到了常见的监控指标,但是有些特殊的指标还是没能提供(也可能是我没找到指标名称).受zabbix的影响,自然而然想到了自定义监 ...
- Linux内核文档翻译——sysfs.txt
sysfs - _The_ filesystem for exporting kernel objects. sysfs – 用于导出内核对象(kobject)的文件系统 Patrick Mochel ...
- Linux内核引用计数器kref结构
1.前言 struct kref结构体是一个引用计数器,它被嵌套进其它的结构体中,记录所嵌套结构的引用计数.引用计数用于检测内核中有多少地方使用了某个对象,每当内核的一个部分需要某个对象所包含的信息时 ...
- 剑指阿里P6,25岁小伙怒斩三面,喜提offer(Java研发岗)
本文提供者:洎扰の庸人 微信公众号:慕容千语的架构笔记.欢迎关注一起进步. 进阿里一直都是身为程序员的我,最初的梦想,经过去年面试蚂蚁金服失败的挫折后,今年再次鼓起勇气投简历,经过一位前辈的内推省了很 ...
- 【转】JavaScript 高性能数组去重
原文地址:https://www.cnblogs.com/wisewrong/p/9642264.html 一.测试模版 数组去重是一个老生常谈的问题,网上流传着有各种各样的解法 为了测试这些解法的性 ...
- C语言是什么
大家对于Java可能并不陌生,那你对c语言了解多少呢,今天小编带大家来了解c语言是什么. c语言是一门面向过程.抽象化的通用程序设计语言,广泛应用于底层开发.C语言具有高效.灵活.功能丰富.表达力强和 ...