Suche…


Syntax

  • plt.close () # schließt die aktuell aktive Figur
  • plt.close (fig) # schließt die Figur mit dem Griff 'fig'
  • plt.close (num) # schließt die Figurennummer 'num'
  • plt.close (name) # schließt die Figur mit der Bezeichnung 'name'
  • plt.close ('all') # schließt alle Zahlen

Schließung der aktuell aktiven Figur mittels Pyplot

Die Pyplot-Schnittstelle zu matplotlib möglicherweise die einfachste Möglichkeit, eine Figur zu schließen.

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

Eine bestimmte Figur mit plt.close () schließen

Eine bestimmte Figur kann durch Halten des Griffs geschlossen werden

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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow