Searched refs:tTest (Results 1 – 3 of 3) sorted by relevance
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
D | TestUtils.java | 38 private static TTest tTest = new TTestImpl(); field in TestUtils 68 TestUtils.tTest = chiSquareTest; in setChiSquareTest() 79 return tTest; in getTTest() 160 return tTest.homoscedasticT(sample1, sample2); in homoscedasticT() 169 return tTest.homoscedasticT(sampleStats1, sampleStats2); in homoscedasticT() 178 return tTest. homoscedasticTTest(sample1, sample2, alpha); in homoscedasticTTest() 186 return tTest.homoscedasticTTest(sample1, sample2); in homoscedasticTTest() 195 return tTest.homoscedasticTTest(sampleStats1, sampleStats2); in homoscedasticTTest() 203 return tTest.pairedT(sample1, sample2); in pairedT() 212 return tTest.pairedTTest(sample1, sample2, alpha); in pairedTTest() [all …]
|
D | TTestImpl.java | 130 return tTest(meanDifference, 0, in pairedTTest() 409 public double tTest(double mu, double[] sample) in tTest() method in TTestImpl 412 return tTest( StatUtils.mean(sample), mu, StatUtils.variance(sample), in tTest() 451 public boolean tTest(double mu, double[] sample, double alpha) in tTest() method in TTestImpl 454 return tTest(mu, sample) < alpha; in tTest() 485 public double tTest(double mu, StatisticalSummary sampleStats) in tTest() method in TTestImpl 488 return tTest(sampleStats.getMean(), mu, sampleStats.getVariance(), in tTest() 528 public boolean tTest( double mu, StatisticalSummary sampleStats, in tTest() method in TTestImpl 532 return tTest(mu, sampleStats) < alpha; in tTest() 571 public double tTest(double[] sample1, double[] sample2) in tTest() method in TTestImpl [all …]
|
D | TTest.java | 342 double tTest(double mu, double[] sample) in tTest() method 379 boolean tTest(double mu, double[] sample, double alpha) in tTest() method 409 double tTest(double mu, StatisticalSummary sampleStats) in tTest() method 447 boolean tTest( in tTest() method 488 double tTest(double[] sample1, double[] sample2) in tTest() method 577 boolean tTest( in tTest() method 672 double tTest( in tTest() method 766 boolean tTest( in tTest() method
|