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 …]
|