我尝试根据邮政编码合并两个数据框。但我只有一个国家的邮政编码,所以我想确定,其他国家的其他行在合并列中收到 NaN。
df 看起来像这样
client age-group category city zip country
4 18-24 basic atown 12345 fooland
5 18-24 basic atown 12345 fooland
6 <18 basic atown 12345 fooland
5 <18 premium ctown 12345 belgium
2 <18 basic atown 12345 fooland
7 <18 basic atown 12345 fooland
另一个像这样:
zip state population ...
11111 a 17800
11112 a 15045
12345 a 13215
12349 b 5401
第二个 df 中的 Zip 是唯一的
有没有比使用 for 循环更快更简单的方法来合并它们df.iterrows()?
精慕HU
相关分类