标签: python pandas dataframe
两个数据帧的列数相同,但是列名不同。
如何垂直绑定两个数据帧?
答案 0 :(得分:0)
您可以尝试
df2.columns=df1.columns pd.concat([df1,df2], ignore_index=True)