サーチ…


構文

  • plt.close()#現在アクティブなFigureを閉じます。
  • plt.close(fig)#ハンドル 'fig'で図を閉じます。
  • plt.close(num)#数字を閉じます。 'num'
  • plt.close(name)# 'name'というラベルで図を閉じます。
  • plt.close( 'all')#すべての図を閉じます。

pyplotを使って現在アクティブな図を閉じる

matplotlibへのpyplotインターフェースは、Figureを閉じる最も簡単な方法かもしれません。

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

plt.close()を使用して特定のFigureを閉じる

特定の数字は、そのハンドルを維持することによって閉じることができます

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