matplotlib
그림 창 닫기
수색…
통사론
- plt.close () # 현재 활성 인물을 닫습니다.
- plt.close (fig) # 핸들 'fig'로 그림을 닫습니다.
- plt.close (num) # 숫자 'num'을 닫습니다.
- plt.close (name) # 이름이 'name'인 그림을 닫습니다.
- plt.close ( 'all') # 모든 수치를 닫습니다.
pyplot을 사용하여 현재 활성 인물 닫기
matplotlib
대한 pyplot 인터페이스는 그림을 닫는 가장 간단한 방법 일 수 있습니다.
import matplotlib.pyplot as plt
plt.plot([0, 1], [0, 1])
plt.close()
plt.close ()를 사용하여 특정 그림 닫기
특정 숫자는 핸들을 유지하여 닫을 수 있습니다.
import matplotlib.pyplot as plt
fig1 = plt.figure() # create first figure
plt.plot([0, 1], [0, 1])
fig2 = plt.figure() # create second figure
plt.plot([0, 1], [0, 1])
plt.close(fig1) # close first figure although second one is active
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow