Ejemplo n.º 1
0
 def make_table_row(self):
     return self.textTable.make_table_row(self.testStat, 
                                              self.testPValue,
                                              self.testReliability,
                             DisplacementTestType.get_string(self.testType),
                             DisplacementTestType.get_dim(self.testType),
                                 self.testPassed and "passed" or "failed")
Ejemplo n.º 2
0
 def append_comment_testType(self, epochList):
     if epochList.testType is None:
         testType = "# coord"
     else:
         from gizela.stat.DisplacementTestType import DisplacementTestType
         testType = DisplacementTestType.get_string(epochList.testType)
         
     label = self.config["testType"]["label"]
     #print "Label:", label, testType
     self.append_comment_line(label + ": " + testType)
Ejemplo n.º 3
0
 def get_test_type_string(self):
     return DisplacementTestType.get_string(self.testType)