gpt4 book ai didi

python - 在列 * 和 * 索引上使用 groupby 和聚合与 Pandas 数据框

转载 作者:行者123 更新时间:2023-12-03 17:11:11 25 4
gpt4 key购买 nike

我有一个与此类似的表,在 (A, B) 上有一个多索引

>>> columns = ["A", "B", "C", "D"]
... data = [
... [1, 1, 99, 22],
... [1, 2, 87, 24],
... [1, 3, 65, 31],
... [2, 1, 88, 30],
... [2, 2, 76, 33],
... [2, 3, 23, 32],
... [2, 4, 38, 28],
... [3, 1, 33, 40],
... [3, 2, 23, 41],
...]
>>>
>>> pd_table = pd.DataFrame(data=data, columns=columns)
>>> pd_table.set_index(["A", "B"], inplace=True)
>>> print(pd_table)
C D
A B
1 1 99 22
2 87 24
3 65 31
2 1 88 30
2 76 33
3 23 32
4 38 28
3 1 33 40
2 23 41
如果我想对索引上的结果进行分组,并对组应用聚合函数,我可以通过
>>> roll_table = pd_table.groupby("A").aggregate({"C": min, "D": max})
>>> print(roll_table)
C D
A
1 65 31
2 23 33
3 23 41
但是,这会降低我想保留的 B 指数。我还想对这个列应用一个函数,但显然这失败了:
>>> roll_table = pd_table.groupby("A").aggregate({"B": max, "C": min, "D": max})
>>> print(roll_index)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "...\Python\Python38\site-packages\pandas\core\groupby\generic.py", line 928, in aggregate
result, how = self._aggregate(func, *args, **kwargs)
File "...\Python\Python38\site-packages\pandas\core\base.py", line 357, in _aggregate
raise SpecificationError("nested renamer is not supported")
pandas.core.base.SpecificationError: nested renamer is not supported
解决这个问题的一种方法是将 B 索引移到列,执行聚合,然后将其移回索引,但这看起来很麻烦:
>>> roll_table = pd_table.reset_index(level="B")
>>> roll_table = roll_table.groupby("A").aggregate({"B": max, "C": min, "D": max})
>>> roll_table = roll_table.set_index("B", append=True)
>>> print(roll_table)
C D
A B
1 3 65 31
2 4 23 33
3 2 23 41
有没有办法对未分组的索引进行聚合工作?

举一个用例示例,索引可能是坐标,我想使用第一个 y 值作为引用点。或者我可能想使用 "size"跟踪有多少值组合在一起。
>>> columns = ["x", "y", "Pressure"]
>>> data = [
... [ 1, 1, 99],
... [ 1, 2, 98],
... [ 1, 3, 101],
... [ 2, 2, 100],
... [ 2, 3, 96],
... [ 3, 1, 100],
... [ 3, 2, 102],
... [ 3, 3, 100],
... ]
>>>
>>> pd_table = pd.DataFrame(data=data, columns=columns)
>>> pd_table.set_index(["x", "y"], inplace=True)
>>>
>>> pd_table.reset_index(level="y", inplace=True)
>>> roll_index = pd_table.groupby("x").aggregate({"y": "first", "Pressure": "mean"})
>>> roll_index.set_index("y", append=True, inplace=True)
>>>
>>> print(roll_index)
Pressure
x y
1 1 99.333333
2 2 98.000000
3 1 100.666667

最佳答案

这是获得结果的一种选择:

pd.DataFrame({key : {"B":value.index.get_level_values('B').max(), 
"C":value.C.min(),
"D":value.D.max()}
for key, value in pd_table.groupby("A").__iter__()}).T


B C D
1 3 65 31
2 4 23 33
3 2 23 41

关于python - 在列 * 和 * 索引上使用 groupby 和聚合与 Pandas 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63204855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com