Uses of Interface
org.apache.commons.math.stat.descriptive.UnivariateStatistic

Packages that use UnivariateStatistic
org.apache.commons.math.stat Data storage, manipulation and summary routines. 
org.apache.commons.math.stat.descriptive Generic univariate summary statistic objects. 
org.apache.commons.math.stat.descriptive.moment Summary statistics based on moments. 
org.apache.commons.math.stat.descriptive.rank Summary statistics based on ranks. 
org.apache.commons.math.stat.descriptive.summary Other summary statistics. 
 

Uses of UnivariateStatistic in org.apache.commons.math.stat
 

Fields in org.apache.commons.math.stat declared as UnivariateStatistic
private static UnivariateStatistic StatUtils.max
          max
private static UnivariateStatistic StatUtils.mean
          mean
private static UnivariateStatistic StatUtils.min
          min
private static UnivariateStatistic StatUtils.prod
          prod
private static UnivariateStatistic StatUtils.sum
          sum
private static UnivariateStatistic StatUtils.sumLog
          sumLog
private static UnivariateStatistic StatUtils.sumSq
          sumSq
 

Uses of UnivariateStatistic in org.apache.commons.math.stat.descriptive
 

Subinterfaces of UnivariateStatistic in org.apache.commons.math.stat.descriptive
 interface StorelessUnivariateStatistic
          Extends the definition of UnivariateStatistic with StorelessUnivariateStatistic.increment(double) and StorelessUnivariateStatistic.incrementAll(double[]) methods for adding values and updating internal state.
 

Classes in org.apache.commons.math.stat.descriptive that implement UnivariateStatistic
 class AbstractStorelessUnivariateStatistic
          Abstract implementation of the StorelessUnivariateStatistic interface.
 class AbstractUnivariateStatistic
          Abstract base class for all implementations of the UnivariateStatistic interface.
 

Methods in org.apache.commons.math.stat.descriptive with parameters of type UnivariateStatistic
abstract  double DescriptiveStatistics.apply(UnivariateStatistic stat)
          Apply the given statistic to the data associated with this set of statistics.
 double DescriptiveStatisticsImpl.apply(UnivariateStatistic stat)
          Apply the given statistic to this univariate collection.
 

Uses of UnivariateStatistic in org.apache.commons.math.stat.descriptive.moment
 

Classes in org.apache.commons.math.stat.descriptive.moment that implement UnivariateStatistic
 class FirstMoment
          Computes the first moment (arithmetic mean).
 class FourthMoment
          Computes a statistic related to the Fourth Central Moment.
 class GeometricMean
          Returns the geometric mean of the available values.
 class Kurtosis
          Computes the Kurtosis of the available values.
 class Mean
          Returns the arithmetic mean of the available values.
 class SecondMoment
          Computes a statistic related to the Second Central Moment.
 class Skewness
          Computes the skewness of the available values.
 class StandardDeviation
          Computes the sample standard deviation.
 class ThirdMoment
          Computes a statistic related to the Third Central Moment.
 class Variance
          Computes the variance of the available values.
 

Uses of UnivariateStatistic in org.apache.commons.math.stat.descriptive.rank
 

Classes in org.apache.commons.math.stat.descriptive.rank that implement UnivariateStatistic
 class Max
          Returns the maximum of the available values.
 class Median
          Returns the median of the available values.
 class Min
          Returns the minimum of the available values.
 class Percentile
          Provides percentile computation.
 

Uses of UnivariateStatistic in org.apache.commons.math.stat.descriptive.summary
 

Classes in org.apache.commons.math.stat.descriptive.summary that implement UnivariateStatistic
 class Product
          Returns the product of the available values.
 class Sum
          Returns the sum of the available values.
 class SumOfLogs
          Returns the sum of the natural logs for this collection of values.
 class SumOfSquares
          Returns the sum of the squares of the available values.