ValueError: x and y must have same first dimension, but have shapes
CODEDRAGON ㆍDevelopment/Python
반응형
오류메시지
plot()함수 호출시 x축 데이터와 y축 데이터의 개수를 맞추어야 합니다. 개수가 맞지 않아서 나오는 에러 입니다.
ValueError: x and y must have same first dimension, but have shapes (4,) and (5,) |
plt.plot([1,2,3,4], [12, 22, 33, 44, 55]) plt.show() |
해결방법
x축 데이터와 y축 데이터의 개수를 4개 혹은 5개로 동일하게 맞춰줍니다.
plt.plot([1,2,3,4], [12, 22, 33, 44]) plt.show() |
plt.plot([1,2,3,4, 5], [12, 22, 33, 44, 55]) plt.show() |
'Development > Python' 카테고리의 다른 글
집합 자료형 생성 (0) | 2019.09.02 |
---|---|
FileNotFoundError: [Errno 2] No such file or directory: 오류 해결방법 (0) | 2019.08.28 |
파이썬 출력결과 파일로 저장 하기 (0) | 2019.08.09 |
람다 함수(lambda) 장단점 (0) | 2019.08.01 |
PEP 8 파이썬 코딩 스타일 (0) | 2019.07.16 |