说我做了
figure(1)
plot(...)
figure(2)
plot(...)
我想创建第三个数字,只显示那一个。这样:
figure(1)
plot(...)
figure(2)
plot(...)
somemagicFuncToFlushFigures()
figure(3)
plot(...)
show()
只会显示第三个数字。 我该怎么做?
答案 0 :(得分:12)
你想关闭数字吗?我想知道以下是否有帮助?
import matplotlib.pyplot as plt
plt.close()
<强>更新强>:
正如@jorgeca所说,要关闭所有数字,请尝试使用plt.close('all')