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

    Modifier and Type
    Class
    Description
    final class 
    Computes the geometric mean of the available values.
    final class 
    Returns the maximum of the available values.
    final class 
    Computes the arithmetic mean of the available values.
    final class 
    Returns the minimum of the available values.
    final class 
    Computes the standard deviation of the available values.
    final class 
    Returns the sum of the available values.
    final class 
    Returns the sum of the squares of the available values.
    final class 
    Computes the variance of the available values.
    final class 
    Computes the kurtosis of the available values.
    final class 
    Returns the maximum of the available values.
    final class 
    Computes the arithmetic mean of the available values.
    final class 
    Returns the minimum of the available values.
    final class 
    Computes the standard deviation of the available values.
    final class 
    Returns the sum of the available values.
    final class 
    Returns the sum of the squares of the available values.
    final class 
    Computes the variance of the available values.
    final class 
    Returns the maximum of the available values.
    final class 
    Computes the arithmetic mean of the available values.
    final class 
    Returns the minimum of the available values.
    final class 
    Returns the product of the available values.
    final class 
    Computes the skewness of the available values.
    final class 
    Computes the standard deviation of the available values.
    final class 
    Returns the sum of the available values.
    final class 
    Returns the sum of the natural logarithm of available values.
    final class 
    Returns the sum of the squares of the available values.
    final class 
    Computes the variance of the available values.
    Methods in org.apache.commons.statistics.descriptive with type parameters of type StatisticAccumulator
    Modifier and Type
    Method
    Description
    (package private) static <T extends StatisticResult & StatisticAccumulator<T>>
    void
    Statistics.checkCombineCompatible(T a, T b)
    Check left-hand side argument a is null or else the right-hand side argument b must also be non-null so the statistics can be combined.
    (package private) static <T extends StatisticResult & StatisticAccumulator<T>>
    void
    Statistics.combine(T a, T b)
    If the left-hand side argument a is non-null, combine it with the right-hand side argument b.