Home
last modified time | relevance | path

Searched refs:WelchsTTest (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/tools/auto_bisect/
Dttest_test.py42 t, df, _ = ttest.WelchsTTest([2, 3, 2, 3, 2, 3], [4, 5, 4, 5, 4, 5])
52 t, _, p = ttest.WelchsTTest([1, 2, 3], [1, 2, 3])
56 t, _, p = ttest.WelchsTTest([1, 2], [1, 2])
62 t, _, p = ttest.WelchsTTest(
69 _, _, p_low_var = ttest.WelchsTTest([2, 3, 2, 3], [4, 5, 4, 5])
70 _, _, p_high_var = ttest.WelchsTTest([1, 4, 1, 4], [3, 6, 3, 6])
75 _, _, p_larger_sample = ttest.WelchsTTest([2, 3, 2, 3], [4, 5, 4, 5])
76 _, _, p_smaller_sample = ttest.WelchsTTest([2, 3, 2, 3], [4, 5])
81 _, _, p_far_means = ttest.WelchsTTest([2, 3, 2, 3], [5, 6, 5, 6])
82 _, _, p_near_means = ttest.WelchsTTest([2, 3, 2, 3], [3, 4, 3, 4])
Dbisect_results_test.py24 original_WelchsTTest = ttest.WelchsTTest
26 ttest.WelchsTTest = lambda _sample1, _sample2: (0, 0, 0.42)
30 ttest.WelchsTTest = original_WelchsTTest
Dttest.py31 def WelchsTTest(sample1, sample2): function
Dbisect_results.py45 _, _, p_value = ttest.WelchsTTest(sample1, sample2)