Programming/python(파이썬)
python matplotlib 그래프 갱신하기
구차니
2024. 5. 27. 11:04
subplot을 생성하고 해도 되고
plt.plot() 으로 바로 한 것에 plt.cla() 해도 된다.
>>> fig, ax = plt.subplots() >>> ax.plot([0,1,2,3,4,5]) >>> ax.clf() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'AxesSubplot' object has no attribute 'clf'. Did you mean: 'cla'? >>> ax.cla() |