Jupyter 노트북에서 특정 수치에 대한 상호 작용을 프로그래밍 방식으로 중지하려면 plt.off()를 사용할 수 있습니다. 그 후에 모든 상호 작용을 중지합니다.
다음 명령을 순차적으로 실행 -
- %matplotlib 자동
- matplotlib.pyplot을 plt로 가져오기
- plt.rcParams["Figure.figsize"] =[7.50, 3.50]
- plt.rcParams["Figure.autolayout"] =참
- 그림과 서브플롯 세트를 생성합니다.
- 축에 선을 그립니다(5단계부터).
- 상호작용을 끕니다.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예시
In [1]: %matplotlib auto Using matplotlib backend: Qt5Agg In [2]: import matplotlib.pyplot as plt In [3]: plt.rcParams["figure.figsize"] = [7.50, 3.50] ...: plt.rcParams["figure.autolayout"] = True In [4]: fig, ax = plt.subplots() In [5]: ax.plot([2, 4, 7, 5, 4, 1]) Out[5]: [<matplotlib.lines.Line2D at 0x7fa6e00f5e48>] In [6]: plt.ioff() In [7]: ax.plot([1, 1, 2, 1, 2, 2]) Out[7]: [<matplotlib.lines.Line2D at 0x7fa6e0063ef0>] In [8]: fig.show() In [9]:
출력