Method Summary |
|
abstract public void | addValue(double v) |
abstract public void | clear() |
public boolean | equals(Object object) Returns true iff object is a SummaryStatistics
instance and all statistics have the same values as this.
Parameters: object - the object to test equality against. |
abstract public double | getGeometricMean() |
abstract public double | getMax() |
abstract public double | getMean() |
abstract public double | getMin() |
abstract public long | getN() |
abstract public double | getStandardDeviation() Returns the standard deviation of the available values.
The standard deviation, Double.NaN if no values have been added or 0.0 for a single value set. |
abstract public double | getSum() Returns the sum of the values that have been added to Univariate. |
public StatisticalSummary | getSummary() Return a
StatisticalSummaryValues instance reporting current
statistics. |
abstract public double | getSumsq() Returns the sum of the squares of the available values. |
abstract public double | getVariance() Returns the variance of the available values.
The variance, Double.NaN if no values have been added or 0.0 for a single value set. |
public int | hashCode() |
public static SummaryStatistics | newInstance(Class cls) Create an instance of a SummaryStatistics
Parameters: cls - the type of SummaryStatistics object tocreate. |
public static SummaryStatistics | newInstance() Create an instance of a SummaryStatistics
a new SummaryStatistics instance. |