def contourf(self, *args, **kwargs):
defaults = {'origin': 'lower', 'cmap': plt.cm.Greys,
'levels': self.nice_levels()}
defaults.update(**kwargs)
ax = kwargs.pop('ax', plt.gca())
return ax.contourf(self.im.T, *args, extent=self.e, **defaults)
评论列表
文章目录