Sök…


Syntax

  • plt.close () # stänger den aktuella aktiva siffran
  • plt.close (fig) # stänger figuren med handtaget 'fig'
  • plt.close (num) # stänger siffran "num"
  • plt.close (name) # stänger figuren med etiketten 'name'
  • plt.close ('all') # stänger alla siffror

Stänger den aktuella aktiva siffran med pyplot

Pyplot-gränssnittet till matplotlib kan vara det enklaste sättet att stänga en siffra.

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

Stängning av en specifik siffra med plt.close ()

En specifik siffra kan stängas genom att hålla handtaget

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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow