Zoeken…


Syntaxis

  • plt.close () # sluit het huidige actieve cijfer
  • plt.close (fig) # sluit het figuur met handvat 'fig'
  • plt.close (num) # sluit het cijfernummer 'num'
  • plt.close (naam) # sluit het figuur met het label 'naam'
  • plt.close ('all') # sluit alle cijfers

Het huidige actieve cijfer sluiten met behulp van pyplot

De pyplot-interface naar matplotlib misschien de eenvoudigste manier om een figuur te sluiten.

import matplotlib.pyplot as plt
plt.plot([0, 1], [0, 1])
plt.close()

Een specifiek figuur sluiten met plt.close ()

Een specifiek figuur kan worden gesloten door de handgreep te behouden

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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow