gpt4 book ai didi

python-3.x - 根据 Pandas 中的一个公共(public)列从另一个数据框中更新多列

转载 作者:行者123 更新时间:2023-12-04 02:36:46 26 4
gpt4 key购买 nike

给定以下两个数据框:

df1:

   id city district  year  price
0 1 bjs cyq 2018 12
1 2 bjs cyq 2019 6
2 3 sh hp 2018 4
3 4 shs hpq 2019 3

df2:

   id city district  year
0 1 bj cy 2018
1 2 bj cy 2019
2 4 sh hp 2019

假设 df1citydistrict 中的某些值有错误,因此我需要更新 citydf1 中的 district 值与基于 iddf2 值,我的预期结果是这样的:

   id city district  year  price
0 1 bj cy 2018 12
1 2 bj cy 2019 6
2 3 sh hp 2018 4
3 4 sh hp 2019 3

我怎么能在 Pandas 中做到这一点?谢谢。

更新:

解决方案一:

cities = df2.set_index('id')['city']
district = df2.set_index('id')['district']

df1['city'] = df1['id'].map(cities)
df1['district'] = df1['id'].map(district)

解决方案 2:

df1[["city","district"]] = pd.merge(df1,df2,on=["id"],how="left")[["city_y","district_y"]]

print(df1)

输出:

   id city district  year  price
0 1 bj cy 2018 12
1 2 bj cy 2019 6
2 3 NaN NaN 2018 4
3 4 sh hp 2019 3

请注意 citydistrict for id3NaN ,但我想保留 df1 中的值。

最佳答案

尝试combine_first:

df2.set_index('id').combine_first(df1.set_index('id')).reset_index()

输出:

   id city district  price    year
0 1 bj cy 12.0 2018.0
1 2 bj cy 6.0 2019.0
2 3 sh hp 4.0 2018.0
3 4 sh hp 3.0 2019.0

关于python-3.x - 根据 Pandas 中的一个公共(public)列从另一个数据框中更新多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61435505/

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