|
Terrier IR Platform 2.2.1 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectuk.ac.gla.terrier.utility.StaTools
public class StaTools
This class implements a series of basic statistical functions.
| Constructor Summary | |
|---|---|
StaTools()
|
|
| Method Summary | |
|---|---|
static double |
mean(double[] data)
The mean of an array of double values. |
static double |
mean(double[] data,
int start,
int length,
boolean ascending)
The mean of a sub-array of an array of double values. |
static double |
mean(int[] data)
The mean of an array of integers. |
static double |
median(double[] data)
The median of an array of double values. |
static double |
standardDeviation(double[] data)
The standard deviation of an array of double values. |
static double |
stdErrorOfTheMean(double[] data)
This method returns the standard error of the mean for an array of data. |
static double |
stirlingPower(double n,
double m)
This method provides the contract for implementing the Stirling formula for the power series. |
static int |
sum(int[] data)
The sum of an array of integers. |
static double |
variance(double[] data)
The variance of an array of double values. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public StaTools()
| Method Detail |
|---|
public static double stirlingPower(double n,
double m)
n - The parameter of the Stirling formula.m - The parameter of the Stirling formula.
public static double stdErrorOfTheMean(double[] data)
data - The sampled data.
public static int sum(int[] data)
data - The integers.
public static double mean(double[] data)
data - The double values.
public static double mean(double[] data,
int start,
int length,
boolean ascending)
data - The array of double values.start - The starting index of the sub-array.length - The length of the sub-array.ascending - Is the starting index the left (true) or
right (false) end of the sub-array?
public static double mean(int[] data)
data - The array of integers.
public static double median(double[] data)
data - The array of double values.
public static double standardDeviation(double[] data)
data - The array of double values.
public static double variance(double[] data)
data - The array of double values.
|
Terrier IR Platform 2.2.1 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||