Uses of Interface
org.apache.commons.statistics.descriptive.StatisticAccumulator
Packages that use StatisticAccumulator
Package
Description
Implementations of univariate statistics.
-
Uses of StatisticAccumulator in org.apache.commons.statistics.descriptive
Classes in org.apache.commons.statistics.descriptive that implement StatisticAccumulatorModifier and TypeClassDescriptionfinal classComputes the geometric mean of the available values.final classReturns the maximum of the available values.final classComputes the arithmetic mean of the available values.final classReturns the minimum of the available values.final classComputes the standard deviation of the available values.final classReturns the sum of the available values.final classReturns the sum of the squares of the available values.final classComputes the variance of the available values.final classComputes the kurtosis of the available values.final classReturns the maximum of the available values.final classComputes the arithmetic mean of the available values.final classReturns the minimum of the available values.final classComputes the standard deviation of the available values.final classReturns the sum of the available values.final classReturns the sum of the squares of the available values.final classComputes the variance of the available values.final classReturns the maximum of the available values.final classComputes the arithmetic mean of the available values.final classReturns the minimum of the available values.final classReturns the product of the available values.final classComputes the skewness of the available values.final classComputes the standard deviation of the available values.final classReturns the sum of the available values.final classReturns the sum of thenatural logarithmof available values.final classReturns the sum of the squares of the available values.final classComputes the variance of the available values.Methods in org.apache.commons.statistics.descriptive with type parameters of type StatisticAccumulatorModifier and TypeMethodDescription(package private) static <T extends StatisticResult & StatisticAccumulator<T>>
voidStatistics.checkCombineCompatible(T a, T b) Check left-hand side argumentaisnullor else the right-hand side argumentbmust also be non-nullso the statistics can be combined.(package private) static <T extends StatisticResult & StatisticAccumulator<T>>
voidStatistics.combine(T a, T b) If the left-hand side argumentais non-null, combine it with the right-hand side argumentb.