Uses of Class
org.apache.commons.statistics.descriptive.SumOfCubedDeviations
Packages that use SumOfCubedDeviations
Package
Description
Implementations of univariate statistics.
-
Uses of SumOfCubedDeviations in org.apache.commons.statistics.descriptive
Subclasses of SumOfCubedDeviations in org.apache.commons.statistics.descriptiveModifier and TypeClassDescription(package private) classComputes the sum of fourth deviations from the sample mean.Fields in org.apache.commons.statistics.descriptive declared as SumOfCubedDeviationsModifier and TypeFieldDescriptionprivate final SumOfCubedDeviationsSkewness.scAn instance ofSumOfCubedDeviations, which is used to compute the skewness.Methods in org.apache.commons.statistics.descriptive that return SumOfCubedDeviationsModifier and TypeMethodDescription(package private) SumOfCubedDeviationsSumOfCubedDeviations.combine(SumOfCubedDeviations other) Combines the state of anotherSumOfCubedDeviationsinto this one.private static SumOfCubedDeviationsSumOfCubedDeviations.create(SumOfSquaredDeviations ss, double[] values, int from, int to) Creates the sum of cubed deviations.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.createFromRange(org.apache.commons.numbers.core.Sum sum, double[] values, int from, int to) Creates the sum of cubed deviations.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.of(double... values) Returns an instance populated using the inputvalues.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.of(int... values) Returns an instance populated using the inputvalues.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.of(long... values) Returns an instance populated using the inputvalues.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.ofRange(double[] values, int from, int to) Returns an instance populated using the specified range ofvalues.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.ofRange(int[] values, int from, int to) Returns an instance populated using the specified range ofvalues.(package private) static SumOfCubedDeviationsSumOfCubedDeviations.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 SumOfCubedDeviationsModifier and TypeMethodDescription(package private) SumOfCubedDeviationsSumOfCubedDeviations.combine(SumOfCubedDeviations other) Combines the state of anotherSumOfCubedDeviationsinto this one.private static SumOfFourthDeviationsSumOfFourthDeviations.create(SumOfCubedDeviations sc, double[] values, int from, int to) Creates the sum of fourth deviations.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfCubedDeviationsModifierConstructorDescription(package private)Creates an instance with the sum of cubed deviations from the mean.(package private)Copy constructor.privateSumOfFourthDeviations(double sq, SumOfCubedDeviations sc) Create an instance with the given sum of fourth and squared deviations.