Python - 关闭绘图matplotlib后生成的空白区域

时间:2016-07-13 13:19:09

标签: python matplotlib jupyter

在模式%matplotlib notebook中,当我尝试关闭一个数字时,jupyter会在笔记本中留下空白区域。

是否有一个命令可以删除此空白区域或关闭图形的正确方法?

ma = [int(1000*random.random()) for i in xrange(10000)]

plt.figure()
counts,bins,bars = plt.hist(ma,200,alpha=0.5)
plt.close()

plt.figure()
plt.plot(ma)

IMAGE EXAMPLE

0 个答案:

没有答案