gpt4 book ai didi

python - 如何处理 pandas 中互补的重复数据?

转载 作者:行者123 更新时间:2023-12-01 20:14:39 25 4
gpt4 key购买 nike

我正在使用 pandas,并尝试删除所有类型为 object 的重复项。但是,我面临的问题是一些重复的数据是相互补充的。例如,具有以下数据框:

print (df)
name ID location
0 A NaN LA
1 A 30 NaN
2 B NaN NaN
3 B NaN NY
4 B 20 NY
5 D 15 TX
6 D 15 NaN

如您所见,其中大部分都是必需的,但同时被视为重复。面对这样的场景,我该如何解决这个问题呢?

我需要的结果如下:

print (df)
name ID location
0 A 30 LA
1 B 20 NY
2 D 15 TX


最佳答案

下面应该可以工作

df1 = df.groupby(['Name'],as_index=False).first()

关于python - 如何处理 pandas 中互补的重复数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61386885/

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