def plot3(self):
fig = pylab.figure(figsize=(8,4))
axes = AxesGrid(fig, 111,nrows_ncols = (1, 3),axes_pad=0.1,
cbar_mode='each',cbar_pad=0,cbar_size='5%',
cbar_location='top',share_all=True)
for ax in axes:
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
self.drawImage(axes[0])
self.drawTS(axes[1])
#self.drawStellarDensity(axes[1])
self.drawMask(axes[2])
return fig,axes
评论列表
文章目录