标签: python matplotlib jupyter
在模式%matplotlib notebook中,当我尝试关闭一个数字时,jupyter会在笔记本中留下空白区域。
%matplotlib notebook
是否有一个命令可以删除此空白区域或关闭图形的正确方法?
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