Class StatisticalSummaryValues

java.lang.Object
org.apache.commons.math3.stat.descriptive.StatisticalSummaryValues
All Implemented Interfaces:
Serializable, StatisticalSummary

Value object representing the results of a univariate statistical summary.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    StatisticalSummaryValues(double mean, double variance, long n, double max, double min, double sum)
    Constructor
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    equals(Object object)
    Returns true iff object is a StatisticalSummaryValues instance and all statistics have the same values as this.
    double
    Returns the maximum of the available values
    double
    Returns the arithmetic mean of the available values
    double
    Returns the minimum of the available values
    long
    Returns the number of available values
    double
    Returns the standard deviation of the available values.
    double
    Returns the sum of the values that have been added to Univariate.
    double
    Returns the variance of the available values.
    int
    Returns hash code based on values of statistics
    Generates a text report displaying values of statistics.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • StatisticalSummaryValues

      public StatisticalSummaryValues(double mean, double variance, long n, double max, double min, double sum)
      Constructor
      Parameters:
      mean - the sample mean
      variance - the sample variance
      n - the number of observations in the sample
      max - the maximum value
      min - the minimum value
      sum - the sum of the values
  • Method Details