如何执行以下操作:加入

时间:2020-04-10 07:36:42

标签: python pandas

我正尝试将两个表合并为最后一个表,如下图所示。

enter image description here

如何在熊猫中做到这一点?这种连接称为什么类型?

1 个答案:

答案 0 :(得分:1)

df1.merge(df2, on="grid_id", how="outer")

(请参见docs

如果需要,请阅读.concat().merge().join()上的the full explanation