IT skill/Python

TypeError: Index(...) must be called with a collection of some kind, ' ' was passed

beelinekim 2024. 2. 29. 19:33
반응형

Pandas를 다루다보면

TypeError: Index(...) must be called with a collection of some kind, ' ' was passed

 

와 같은 에러를 마주할 수 있습니다.

 

이 경우에는 높은 확률로 DataFrame을 이렇게 만드셨을 가능성이 있습니다.

 

import pandas as pd
pd.DataFrame(element1, element2, element3)

 

 

이 부분을 다음과 같이 고쳐줍니다.

 

import pandas as pd
pd.DataFrame([element1, element2, element3])

 

 

도움이 되셨다면 아무 광고나 클릭 한 번 부탁드립니다👍

반응형