반응형
1. 개요
dictionary로 키, 값 쌍으로 된 데이터를 pandas DataFrame으로 만들려고 했을 때,
모든 값이 스칼라 값(if using all scalar values) 일 경우에
"ValueError: If using all scalar values, you must pass an index" 에러가 발생한다고 한다
2. 해결방법
해결방법에는 총 4가지의 방법이 있는데 난 첫번째의 방법을 사용했다
에러메시지 'you must pass an index" 라는 가이드라인대로 인덱스 값을 추가로 입력하면 된다.
그 외 나머지 3가지 해결방법은 아래 참고 링크를 통해 남기고 난 후,
추후 다시 해당 에러를 접하게 된다면 그때 참고 해야겠다.
3. 참고링크
https://rfriend.tistory.com/482
반응형
'Error code 모음 > 4. Python errors' 카테고리의 다른 글
[Python Error] 윈도우 CMD 에서 pip instll 시 systaxError (0) | 2021.06.19 |
---|---|
[ Python Error] “getaddrinfo failed” (0) | 2021.06.05 |
[Python Error] Error: [Errno 11001] getaddrinfo failed (0) | 2021.04.17 |
[Python Error] google.api_core.exceptions.InvalidArgument: 400 Specify MP3 encoding to match audio file. (0) | 2021.03.19 |
[Python Error] TypeError: expected string or bytes-like object (0) | 2021.03.18 |