python - pyplot python 'str' object is not callable
2023. 9. 1. 11:11ㆍ데이터 분석/에러
이유는 모르겠는데 가끔 그래프를 수정할 때 뜨던 에러
아나콘다를 쓸 경우 커널 재시작하면 되고, 간단하게 코랩으로 하던 경우 리로드 기능 임포트 해와서 쓰면 된다.
from importlib import reload
plt=reload(plt)
728x90