Uses of Class
org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
-
Packages that use AbstractUnivariateStatistic Package Description 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 AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive
Subclasses of AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive Modifier and Type Class Description class
AbstractStorelessUnivariateStatistic
Abstract implementation of theStorelessUnivariateStatistic
interface. -
Uses of AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.moment
Subclasses of AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.moment Modifier and Type Class Description 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
Computes the arithmetic mean of a set of values.class
SecondMoment
Computes a statistic related to the Second Central Moment.class
SemiVariance
Computes the semivariance of a set of values with respect to a given cutoff value.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 AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.rank
Subclasses of AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.rank Modifier and Type Class Description 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 AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.summary
Subclasses of AbstractUnivariateStatistic in org.apache.commons.math.stat.descriptive.summary Modifier and Type Class Description 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.
-