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
'데이터 분석 > [Python] Troubleshooting' 카테고리의 다른 글
[python] SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버 버전 오류 (0) | 2021.09.13 |
---|---|
OverflowError: Python int too large to convert to C long (0) | 2021.09.09 |
[Python] np.where 조건 여러개 TypeError (0) | 2021.08.17 |
XGBoost 설치 에러 (0) | 2021.02.02 |
ModuleNotFoundError: No module named 'MySQLdb' (0) | 2020.09.13 |