如何在Jupyter笔记本上显示图片?

时间:2017-11-09 00:46:49

标签: python jupyter-notebook

我有Python代码来创建图片文件 我在Jupyter笔记本上运行它 我想不要在Jupyter笔记本上显示图片 我只是想保存图片文件。

如何在Jupyter笔记本上显示图片?

  

我的代码

import numpy
  .
  .
  .

fig = pl.figure(figsize=(10, 8)) 
# create subplots 
ax1 = pl.subplot2grid((2, 2), (0, 0)) 



# azimuth angle
#angle = 71
angle = angle_n

# Plot terrain (on ax1)
ax1, dem = wrl.vis.plot_ppi(polarvalues, 
                            ax=ax1, r=r, 
                            az=np.degrees(coord[:,0,1]), 
                            cmap=mpl.cm.terrain, vmin=0.)
ax1.plot([0,np.sin(np.radians(angle))*1e5],
         [0,np.cos(np.radians(angle))*1e5],"r-")
ax1.plot(sitecoords[0], sitecoords[1], 'ro')
annotate_map(ax1, dem, 'Terrain within {0} km range'.format(np.max(r / 1000.) + 0.1))

stitle=str('Site:{0}, El: {1}, Az: {2}, arc_sec:
{3}'.format(site_nm,el,angle_n,arc_s))
fig.suptitle(stitle, fontsize=12)
### Save figure file
fig.savefig(DAGR)

1 个答案:

答案 0 :(得分:0)

在要隐藏其输出的单元格的末尾添加;