def plot_all(self,runtype=None,figdir=None, **plotargs):
"""Make the 6 standard plots of the observable data.
plot_all(runtype='RUNTYPE',figdir=None,**plotargs)
plotargs (see AngleprojectedObservable.plot()):
title None: generate title for each individual plot
using the observables legend
string: use provided title for _all_ plots
"": no title
min_contour |
max_contour +- boundaries for the contour plot
cmap pylab colormap instance or None for the default [cm.jet]
alpha alpha for the filled contours [1.0]
overlay function that is called with no arguments, eg
overlay = lambda : coRMSD.DeltaRMSD.plot(with_colorbar=False,clf=False,with_filled=False,linewidth=3,colors='white')
"""
kwargs = dict(runtype=runtype,figdir=figdir,**plotargs)
self.autoplot('observable',**kwargs)
self.autoplot('stdev',**kwargs)
figdir = self.autoplot('counts',**kwargs)
print "-- Figures in %r." % figdir
return figdir
评论列表
文章目录