아빠는 개발자

[matplotlib] TypeError: __init__() got an unexpected keyword argument 'ncols' 본문

카테고리 없음

[matplotlib] TypeError: __init__() got an unexpected keyword argument 'ncols'

father6019 2024. 6. 15. 23:48
728x90
반응형

 

TypeError: __init__() got an unexpected keyword argument 'ncols'

TypeError: init() got an unexpected keyword argument 'layout'

 

 

matplotlib 버전확인

import matplotlib
print(matplotlib.__version__)

 

pip install --upgrade matplotlib

 

 

ncols 같은에러는 ncol 로 변경하면 해결되긴했지만 버전을 올려서 해결하는 방법으로 해보잣

 

 

  • matplotlib를 최신 버전으로 업데이트하십시오.
  • ax.legend(loc='upper left', ncols=3) 대신 ax.legend(loc='upper left', ncol=3)를 사용하십시오.

 

728x90
반응형