Uses of Interface
org.apache.commons.statistics.descriptive.StatisticResult
-
Packages that use StatisticResult Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of StatisticResult in org.apache.commons.statistics.descriptive
Classes in org.apache.commons.statistics.descriptive with type parameters of type StatisticResult Modifier and Type Interface Description interfaceStatisticAccumulator<T extends StatisticResult>A mutable result container that accumulates aStatisticResult.Subinterfaces of StatisticResult in org.apache.commons.statistics.descriptive Modifier and Type Interface Description (package private) interfaceBigIntegerStatisticResultRepresents theBigIntegerresult of a statistic computed over a set of values.interfaceDoubleStatisticRepresents a state object for computing a statistic overdoublevalued input(s).interfaceIntStatisticRepresents a state object for computing a statistic overintvalued input(s).(package private) interfaceIntStatisticResultRepresents theintresult of a statistic computed over a set of values.interfaceLongStatisticRepresents a state object for computing a statistic overlongvalued input(s).(package private) interfaceLongStatisticResultRepresents thelongresult of a statistic computed over a set of values.Classes in org.apache.commons.statistics.descriptive that implement StatisticResult Modifier and Type Class Description classGeometricMeanComputes the geometric mean of the available values.classIntMaxReturns the maximum of the available values.classIntMeanComputes the arithmetic mean of the available values.classIntMinReturns the minimum of the available values.classIntStandardDeviationComputes the standard deviation of the available values.classIntSumReturns the sum of the available values.classIntSumOfSquaresReturns the sum of the squares of the available values.classIntVarianceComputes the variance of the available values.classKurtosisComputes the kurtosis of the available values.classLongMaxReturns the maximum of the available values.classLongMeanComputes the arithmetic mean of the available values.classLongMinReturns the minimum of the available values.classLongStandardDeviationComputes the standard deviation of the available values.classLongSumReturns the sum of the available values.classLongSumOfSquaresReturns the sum of the squares of the available values.classLongVarianceComputes the variance of the available values.classMaxReturns the maximum of the available values.classMeanComputes the arithmetic mean of the available values.classMinReturns the minimum of the available values.classProductReturns the product of the available values.classSkewnessComputes the skewness of the available values.classStandardDeviationComputes the standard deviation of the available values.classSumReturns the sum of the available values.classSumOfLogsReturns the sum of thenatural logarithmof available values.classSumOfSquaresReturns the sum of the squares of the available values.classVarianceComputes the variance of the available values.Methods in org.apache.commons.statistics.descriptive with type parameters of type StatisticResult Modifier and Type Method Description (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.Methods in org.apache.commons.statistics.descriptive that return StatisticResult Modifier and Type Method Description private StatisticResultDoubleStatistics. getGeometricMean()Gets the geometric mean.private StatisticResultIntStatistics. getGeometricMean()Gets the geometric mean.private StatisticResultLongStatistics. getGeometricMean()Gets the geometric mean.private StatisticResultDoubleStatistics. getKurtosis()Gets the kurtosis.private StatisticResultIntStatistics. getKurtosis()Gets the kurtosis.private StatisticResultLongStatistics. getKurtosis()Gets the kurtosis.private StatisticResultDoubleStatistics. getMean()Gets the mean.private StatisticResultIntStatistics. getMean()Gets the mean.private StatisticResultLongStatistics. getMean()Gets the mean.StatisticResultDoubleStatistics. getResult(Statistic statistic)Gets a supplier for the value of the specifiedstatistic.StatisticResultIntStatistics. getResult(Statistic statistic)Gets a supplier for the value of the specifiedstatistic.StatisticResultLongStatistics. getResult(Statistic statistic)Gets a supplier for the value of the specifiedstatistic.(package private) static StatisticResultStatistics. getResultAsBigIntegerOrNull(StatisticResult s)Gets the statistic result using theBigIntegervalue.(package private) static StatisticResultStatistics. getResultAsDoubleOrNull(StatisticResult s)Gets the statistic result using thedoublevalue.(package private) static StatisticResultStatistics. getResultAsIntOrNull(StatisticResult s)Gets the statistic result using theintvalue.(package private) static StatisticResultStatistics. getResultAsLongOrNull(StatisticResult s)Gets the statistic result using thelongvalue.private StatisticResultDoubleStatistics. getSkewness()Gets the skewness.private StatisticResultIntStatistics. getSkewness()Gets the skewness.private StatisticResultLongStatistics. getSkewness()Gets the skewness.private StatisticResultDoubleStatistics. getStandardDeviation()Gets the standard deviation.private StatisticResultIntStatistics. getStandardDeviation()Gets the standard deviation.private StatisticResultLongStatistics. getStandardDeviation()Gets the standard deviation.private StatisticResultDoubleStatistics. getVariance()Gets the variance.private StatisticResultIntStatistics. getVariance()Gets the variance.private StatisticResultLongStatistics. getVariance()Gets the variance.private StatisticResultIntStatistics. getVarianceOrStd(boolean std)Gets the variance or standard deviation.private StatisticResultLongStatistics. getVarianceOrStd(boolean std)Gets the variance or standard deviation.Methods in org.apache.commons.statistics.descriptive with parameters of type StatisticResult Modifier and Type Method Description (package private) static StatisticResultStatistics. getResultAsBigIntegerOrNull(StatisticResult s)Gets the statistic result using theBigIntegervalue.(package private) static StatisticResultStatistics. getResultAsDoubleOrNull(StatisticResult s)Gets the statistic result using thedoublevalue.(package private) static StatisticResultStatistics. getResultAsIntOrNull(StatisticResult s)Gets the statistic result using theintvalue.(package private) static StatisticResultStatistics. getResultAsLongOrNull(StatisticResult s)Gets the statistic result using thelongvalue.
-