标签: python pandas
我正尝试将两个表合并为最后一个表,如下图所示。
如何在熊猫中做到这一点?这种连接称为什么类型?
答案 0 :(得分:1)
df1.merge(df2, on="grid_id", how="outer")
(请参见docs)
如果需要,请阅读.concat(),.merge()和.join()上的the full explanation。
.concat()
.merge()
.join()