标签: python pandas
我有两个数据帧df1:
和df2:
我想将这两个数据帧合并以获得df3:
这是我要构建的逻辑:
我可以执行此操作吗?
答案 0 :(得分:0)
您可以使用熊猫-合并
pd.merge(df1,df2,left_index = True,right_index = True)
或concat
pd.concat([df1] ... [df2],轴= 1)
有关更多信息,您可以查看以下链接:
https://jakevdp.github.io/PythonDataScienceHandbook/03.07-merge-and-join.html