Uses of Class
org.eclipse.test.internal.performance.eval.StatisticsUtil.Percentile

Packages that use StatisticsUtil.Percentile
org.eclipse.test.internal.performance.eval   
 

Uses of StatisticsUtil.Percentile in org.eclipse.test.internal.performance.eval
 

Fields in org.eclipse.test.internal.performance.eval declared as StatisticsUtil.Percentile
static StatisticsUtil.Percentile StatisticsUtil.T90
           
static StatisticsUtil.Percentile StatisticsUtil.T95
           
static StatisticsUtil.Percentile StatisticsUtil.T97_5
           
static StatisticsUtil.Percentile StatisticsUtil.T99
           
 

Methods in org.eclipse.test.internal.performance.eval with parameters of type StatisticsUtil.Percentile
 double[] StatisticsSession.getConfidenceInterval(Dim dimension, StatisticsUtil.Percentile percentile)
          Returns the confidence interval for the given dimension and the percentile.
static double StatisticsUtil.getStudentsT(int df, StatisticsUtil.Percentile percentile)
          Returns the student's t value from the two-tailed t-table.
static double[] StatisticsUtil.statisticsForTimeSeries(TimeSeries refSeries, int index1, TimeSeries testSeries, int index2, StatisticsUtil.Percentile percentile)
          Returns true if the mean of two data sets is significantly different, such that the probability that they are from the same population is lower than percentile, false otherwise.
static double StatisticsUtil.studentTtest(double[] values, double[] stddevs, long[] counts, StatisticsUtil.Percentile percentile)