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

        self.x_value_ls = []
        self.y_value_ls = []
        self.z_value_ls = []
Esempio n. 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)
Esempio n. 3
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
Esempio n. 4
0
    def __init__(self, inputFnameLs=None, **keywords):
        """
		"""
        AbstractPlot.__init__(self, inputFnameLs=inputFnameLs, **keywords)
Esempio n. 5
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
Esempio n. 6
0
 def __init__(self, parent):
     AbstractPlot.__init__(self, parent, (255, 255, 255))
Esempio n. 7
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
     self.logger = logging.getLogger()
Esempio n. 8
0
 def __init__(self, options):
     AbstractPlot.__init__(self, options)
     
     self.logger = logging.getLogger('timestamp')
Esempio n. 9
0
	def __init__(self, parent):
		AbstractPlot.__init__(self, parent, (255,255,255))
Esempio n. 10
0
    def __init__(self, inputFnameLs=None, **keywords):
        """
		"""
        AbstractPlot.__init__(self, inputFnameLs=inputFnameLs, **keywords)
        #2012.11.22
        self.boxPlotXLabelList = []
Esempio n. 11
0
 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)
Esempio n. 12
0
 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)