def __init__(self, inputFnameLs, **keywords):
        """
		"""
        AbstractPlot.__init__(self, inputFnameLs=inputFnameLs, **keywords)

        self.x_value_ls = []
        self.y_value_ls = []
        self.z_value_ls = []
示例#2
0
 def saveFigure(self, invariantPData=None, **keywords):
     """
     before saving the figure, mark the xticks
     """
     pylab.xticks(range(len(self.boxPlotXLabelList)),
                  self.boxPlotXLabelList)
     AbstractPlot.saveFigure(self,
                             invariantPData=invariantPData,
                             **keywords)
示例#3
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
示例#4
0
    def __init__(self, inputFnameLs=None, **keywords):
        """
		"""
        AbstractPlot.__init__(self, inputFnameLs=inputFnameLs, **keywords)
示例#5
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
示例#6
0
 def __init__(self, parent):
     AbstractPlot.__init__(self, parent, (255, 255, 255))
示例#7
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
     self.logger = logging.getLogger()
示例#8
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
     
     self.logger = logging.getLogger('timestamp')
示例#9
0
	def __init__(self, parent):
		AbstractPlot.__init__(self, parent, (255,255,255))
示例#10
0
    def __init__(self, inputFnameLs=None, **keywords):
        """
		"""
        AbstractPlot.__init__(self, inputFnameLs=inputFnameLs, **keywords)
        #2012.11.22
        self.boxPlotXLabelList = []
示例#11
0
文件: ImPlot.py 项目: astroumd/admit
 def __init__(self, pmode=None, ptype=None, figno=None, abspath=""):
     # @todo figno given here really must be figno-1 since every
     # method increments it.  probably should start static at 1 and
     # increment AFTER plt is made.
     AbstractPlot.__init__(self, pmode, ptype, figno, abspath)
示例#12
0
文件: ImPlot.py 项目: teuben/admit
 def __init__(self,pmode=None,ptype=None,figno=None,abspath=""):
     # @todo figno given here really must be figno-1 since every
     # method increments it.  probably should start static at 1 and
     # increment AFTER plt is made.
     AbstractPlot.__init__(self,pmode,ptype,figno,abspath)