gpt4 book ai didi

Python 对 groupby 求和两次

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:32 26 4
gpt4 key购买 nike

在对数据框进行分组后,我正在努力计算一系列总和,我希望有人能帮我出主意。基本上我在下面的示例中需要每个“ Material ”的总和。基本上 Material "ABC"应该给我 2,而所有其他的因为它们只有一个符号操作而具有相同的值。

import numpy as np
import pandas as pd

df = pd.DataFrame({
"Material" : ["M-12", "H4-LAMPE", "M-12", "H4-LAMPE",
"ABC" , "H4-LAMPE", "ABC", "ABC"] ,
"Quantity" : [6, 1, 3, 5, 1, 1, 10, 9],
"TYPE": ["+", "-", "+", "-", "+", "-", "+", "-"]})
df.groupby(['Material', "Quantity"], as_index=False).count()

listX = []
for item in df["TYPE"]:
if item == "+":
listX.append(1)
elif item == "-":
listX.append(-1)
else:
pass
df["Sign"] = lista
df["MovementsQty"] = df["Quantity"]*df["Sign"]
#df = df.groupby(["Material", "TYPE", "Quantity1"]).sum()
df1 = df.groupby(["Material", "TYPE"]).sum()
df1.drop(columns=["Quantity", "Sign"], inplace=True)

print(df1)

结果是:

enter image description here

期望的结果是:

enter image description here

我试图再次总结它,以不同的方式考虑它,但到目前为止我没有成功,我想我需要一些帮助。

非常感谢您的帮助

最佳答案

您走在正确的轨道上。我试图改进您的代码。只需使用“Type”通过np.where确定和分配符号,执行groupbysum,然后重新计算“Type "基于结果的列。

v = (df.assign(Quantity=np.where(df.TYPE == '+', df.Quantity, -df.Quantity))
.groupby('Material', as_index=False)[['Quantity']]
.sum())

v.insert(1, 'Type', np.where(np.sign(v.Quantity) == 1, '+', '-'))

print (v)
Material Type Quantity
0 ABC + 2
1 H4-LAMPE - -7
2 M-12 + 9

或者,您可以通过两次 groupby 调用来完成此操作:

i = df.query('TYPE == "+"').groupby('Material').Quantity.sum()
j = df.query('TYPE == "-"').groupby('Material').Quantity.sum()
# Find the union of the indexes.
idx = i.index.union(j.index)
# Reindex and subtract.
v = i.reindex(idx).fillna(0).sub(j.reindex(idx).fillna(0)).reset_index()
# Insert the Type column back into the result.
v.insert(1, 'Type', np.where(np.sign(v.Quantity) == 1, '+', '-'))

print(v)
Material Type Quantity
0 ABC + 2.0
1 H4-LAMPE - -7.0
2 M-12 + 9.0

关于Python 对 groupby 求和两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52284685/

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