コード例 #1
0
 def testTwoSampleTTestBit(self):
     ASL = two_sample_testing(self.normal_data,
                              self.normal_data,
                              statistic_func=t_test_statistic)
     self.assertGreater(ASL, 0.05)
コード例 #2
0
 def testTwoSampleBig(self):
     ASL = two_sample_testing(self.normal_data, self.normal_data)
     self.assertGreater(ASL, 0.05)
コード例 #3
0
 def testTwoSampleTTest(self):
     ASL = two_sample_testing(self.normal_data2,
                              self.normal_data,
                              statistic_func=t_test_statistic)
     self.assertEqual(ASL, 0)
コード例 #4
0
 def testTwoSampleZero(self):
     ASL = two_sample_testing(self.normal_data2, self.normal_data)
     self.assertEqual(ASL, 0)