Uses of Class
org.apache.commons.statistics.descriptive.SumOfLogs
-
Packages that use SumOfLogs Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of SumOfLogs in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as SumOfLogs Modifier and Type Field Description private SumOfLogsDoubleStatistics. sumOfLogsTheSumOfLogsimplementation.private SumOfLogsGeometricMean. sumOfLogsSum of logs used to compute the geometric mean.private SumOfLogsIntStatistics. sumOfLogsTheSumOfLogsimplementation.private SumOfLogsLongStatistics. sumOfLogsTheSumOfLogsimplementation.Fields in org.apache.commons.statistics.descriptive with type parameters of type SumOfLogs Modifier and Type Field Description private 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 SumOfLogs Modifier and Type Method Description SumOfLogsSumOfLogs. combine(SumOfLogs other)static 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 SumOfLogs Modifier and Type Method Description SumOfLogsSumOfLogs. combine(SumOfLogs other)(package private) static doubleGeometricMean. computeGeometricMean(long n, SumOfLogs sumOfLogs)Compute the geometric mean.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfLogs Constructor Description DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.GeometricMean(SumOfLogs sumOfLogs, long n)Create an instance.IntStatistics(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.LongStatistics(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.
-