def testTwoSampleTTestBit(self): ASL = two_sample_testing(self.normal_data, self.normal_data, statistic_func=t_test_statistic) self.assertGreater(ASL, 0.05)
def testTwoSampleBig(self): ASL = two_sample_testing(self.normal_data, self.normal_data) self.assertGreater(ASL, 0.05)
def testTwoSampleTTest(self): ASL = two_sample_testing(self.normal_data2, self.normal_data, statistic_func=t_test_statistic) self.assertEqual(ASL, 0)
def testTwoSampleZero(self): ASL = two_sample_testing(self.normal_data2, self.normal_data) self.assertEqual(ASL, 0)