gpt4 book ai didi

python - Pandas :根据条件合并行

转载 作者:太空宇宙 更新时间:2023-11-04 02:00:03 24 4
gpt4 key购买 nike

我有一个 pandas DataFrame,其中包含下一列 - “A”、“B”、“C”、“D”。我想合并具有以下条件的 DataFrame 的行 -

如果我的 DataFrame 叫做 df:

(df.at[i,"A"] == df.at[j, "B"]) and (df.at[j,"A"] == df.at[i,"B"])

例如——

df = pd.DataFrame([[1,2,10,0.55],[3,4,5,0.3],[2,1,2,0.7]], columns=["A","B","C","D"]) 

这给出了 -

In [93]: df                                                                                                                                     
Out[93]:
A B C D
0 1 2 10 0.55
1 3 4 5 0.30
2 2 1 2 0.70

在上面的示例中,第 0 行和第 2 行具有条件。我确定最多可以有 2 行对应于此条件。对于具有这种情况的行,我想对“C”值求和,平均“D”并删除冗余行。在上面的示例中,我想得到 -

In [95]: result                                                                                                                                     
Out[95]:
A B C D
0 1 2 12 0.625
1 3 4 5 0.300

或者

In [95]: result                                                                                                                                     
Out[95]:
A B C D
0 2 1 12 0.625
1 3 4 5 0.300

我尝试了以下非常慢的代码:

def remove_dups(path_to_df: str):
df = pd.read_csv(path_to_df)
for i in range(len(df)):
a = df.at[i, "A"]
b = df.at[i, "B"]
same_row = df[(df["A"] == b) & (df["B"] == a)]
if same_row.empty:
continue
c = df.at[i, "C"]
d = df.at[i, "D"]
df.drop(i, inplace=True)
new_ind = same_row.index[0]
df.at[new_ind, "C"] += c
df.at[new_ind, "D"] = (df.at[new_ind, "D"] + distance) / 2
return df

有没有办法仅使用内置的 Pandas 函数来完成此操作?

最佳答案

使用numpy.sort先然后GroupBy.agg :

df[['A','B']] = np.sort(df[['A','B']], axis=1)

df = df.groupby(['A','B'], as_index=False).agg({'C':'sum', 'D':'mean'})
print (df)
A B C D
0 1 2 12 0.625
1 3 4 5 0.300

如果无法更改原始值:

arr = np.sort(df[['A','B']], axis=1)

df = (df.groupby([arr[:, 0],arr[:, 1]])
.agg({'C':'sum', 'D':'mean'})
.rename_axis(('A','B'))
.reset_index())
print (df)
A B C D
0 1 2 12 0.625
1 3 4 5 0.300

关于python - Pandas :根据条件合并行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55899096/

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