[Python] ValueError: 1 columns passed, passed data had 11 columns 오류
2020. 3. 2. 15:01ㆍ오류
material_quantity = pd.DataFrame(alldf3,columns=['물질량'])
작성시 아래와 같은 에러가 난다면?
ValueError: 1 columns passed, passed data had 11 columns
alldf3가 이중리스트로 되어있기 때문에
딕셔너리 형태로 변환 후 데이터프레임을 만들면 해결이 된다.
material_quantity = pd.DataFrame({'물질량':alldf3})
728x90
'오류' 카테고리의 다른 글
history 유지하며 여러 git repo 합치기 (0) | 2020.10.28 |
---|---|
tar.Z 파일 linux에서 압축풀기 (0) | 2020.03.17 |
[Python] TypeError: Object of type int32 is not JSON serializable (0) | 2020.03.16 |
ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 액세스가 거부되었습니다: 오류 (0) | 2020.03.02 |
[Python] InvocationException: GraphViz's executables not found 오류? (0) | 2020.03.01 |