Uses of Class
org.apache.commons.statistics.descriptive.SumOfLogs
Packages that use SumOfLogs
Package
Description
Implementations of univariate statistics.
-
Uses of SumOfLogs in org.apache.commons.statistics.descriptive
Classes in org.apache.commons.statistics.descriptive that implement interfaces with type arguments of type SumOfLogsModifier and TypeClassDescriptionfinal classReturns the sum of thenatural logarithmof available values.Fields in org.apache.commons.statistics.descriptive declared as SumOfLogsModifier and TypeFieldDescriptionprivate final SumOfLogsDoubleStatistics.sumOfLogsTheSumOfLogsimplementation.private final SumOfLogsGeometricMean.sumOfLogsSum of logs used to compute the geometric mean.private final SumOfLogsIntStatistics.sumOfLogsTheSumOfLogsimplementation.private final SumOfLogsLongStatistics.sumOfLogsTheSumOfLogsimplementation.Fields in org.apache.commons.statistics.descriptive with type parameters of type SumOfLogsModifier and TypeFieldDescriptionprivate RangeFunction<double[], SumOfLogs> DoubleStatistics.Builder.sumOfLogsTheSumOfLogsconstructor.private RangeFunction<int[], SumOfLogs> IntStatistics.Builder.sumOfLogsTheSumOfLogsconstructor.private RangeFunction<long[], SumOfLogs> LongStatistics.Builder.sumOfLogsTheSumOfLogsconstructor.Methods in org.apache.commons.statistics.descriptive that return SumOfLogsModifier and TypeMethodDescriptionstatic SumOfLogsSumOfLogs.create()Creates an instance.(package private) static SumOfLogsSumOfLogs.createFromRange(double[] values, int from, int to) Create an instance using the specified range ofvalues.(package private) static SumOfLogsSumOfLogs.createFromRange(int[] values, int from, int to) Create an instance using the specified range ofvalues.(package private) static SumOfLogsSumOfLogs.createFromRange(long[] values, int from, int to) Create an instance using the specified range ofvalues.static SumOfLogsSumOfLogs.of(double... values) Returns an instance populated using the inputvalues.static SumOfLogsSumOfLogs.of(int... values) Returns an instance populated using the inputvalues.static SumOfLogsSumOfLogs.of(long... values) Returns an instance populated using the inputvalues.static SumOfLogsSumOfLogs.ofRange(double[] values, int from, int to) Returns an instance populated using the specified range ofvalues.static SumOfLogsSumOfLogs.ofRange(int[] values, int from, int to) Returns an instance populated using the specified range ofvalues.static SumOfLogsSumOfLogs.ofRange(long[] values, int from, int to) Returns an instance populated using the specified range ofvalues.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfLogsModifier and TypeMethodDescription(package private) static doubleGeometricMean.computeGeometricMean(long n, SumOfLogs sumOfLogs) Compute the geometric mean.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfLogsModifierConstructorDescription(package private)DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.privateGeometricMean(SumOfLogs sumOfLogs, long n) Create an instance.(package private)IntStatistics(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.(package private)LongStatistics(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.