예제 #1
0
    def __init__(self, thisData, thisEerObject, thisCllrObject, thisConfig, thisExpName, thisDebug):
        Zoo.__init__(self, thisData, thisConfig, thisExpName, thisDebug)
        self.data = thisData
        self._eerObject = thisEerObject
        self._cllrObject = thisCllrObject
        self.config = thisConfig
        self._expName = thisExpName
        self._printToFilename = thisExpName
        self.debug = thisDebug
        self.plotType = "zoo_plot"

        self.title = self.data.getTitle()
        # All ellipses will have their own annotation.
        self._pointsWithAnnotation = []
        # Directory to store animal data.
        self._outputPath = self.config.getOutputPath()
        self.aimsStdDev = []
        self.agmsStdDev = []
        self.fig = None
예제 #2
0
    def __init__(self, thisData, thisEerObject, thisCllerObject, thisConfig, thisExpName, thisDebug):
        Zoo.__init__(self, thisData, thisConfig, thisExpName, thisDebug)
        self.config = thisConfig
        self.data = thisData
        self._eerObject = thisEerObject
        self._cllrObject = thisCllerObject
        self._printToFilename = thisExpName
        self.debug = thisDebug
        # All ellipses will have their own annotation.
        self._pointsWithAnnotation = []
        # Directory to store animal data.
        self._outputPath = self.config.getOutputPath()

        if self.debug:
            print('nrMeta:', self.data.getNrDistinctMetaDataValues())
        self._title = self.data.getTitle()

        self.aimsStdDev = collections.defaultdict(float)
        self.agmsStdDev = collections.defaultdict(float)
        self.annotateEllipses = None
예제 #3
0
    def __init__(self, thisData, thisEerObject, thisCllerObject, thisConfig,
                 thisExpName, thisDebug):
        Zoo.__init__(self, thisData, thisConfig, thisExpName, thisDebug)
        self.config = thisConfig
        self.data = thisData
        self._eerObject = thisEerObject
        self._cllrObject = thisCllerObject
        self._printToFilename = thisExpName
        self.debug = thisDebug
        # All ellipses will have their own annotation.
        self._pointsWithAnnotation = []
        # Directory to store animal data.
        self._outputPath = self.config.getOutputPath()

        if self.debug:
            print('nrMeta:', self.data.getNrDistinctMetaDataValues())
        self._title = self.data.getTitle()

        self.aimsStdDev = collections.defaultdict(float)
        self.agmsStdDev = collections.defaultdict(float)
        self.annotateEllipses = None