[Python] ValueError: Plan shapes are not aligned

데이터 분석/[Python] Troubleshooting

[Python] ValueError: Plan shapes are not aligned

INCHELIN 2021. 8. 19. 10:55
728x90
df_concat = pd.concat([df1, df2])

ValueError: Plan shapes are not aligned

 

데이터프레임 df1, df2 둘 중에 컬럼명이 중복된 것이 있을 것입니다

df1.columns.duplicated() # 컬럼 중복 확인!

columns => ['A', 'B', 'A', 'C'] 같은 경우입니다. 컬럼명 중복을 해결하신 후 다시 pd.concat( )을 하면 해결됩니다~

728x90