Uses of Class
org.apache.commons.statistics.descriptive.SumOfCubedDeviations
-
Packages that use SumOfCubedDeviations Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of SumOfCubedDeviations in org.apache.commons.statistics.descriptive
Subclasses of SumOfCubedDeviations in org.apache.commons.statistics.descriptive Modifier and Type Class Description (package private) classSumOfFourthDeviationsComputes the sum of fourth deviations from the sample mean.Fields in org.apache.commons.statistics.descriptive declared as SumOfCubedDeviations Modifier and Type Field Description private SumOfCubedDeviationsSkewness. scAn instance ofSumOfCubedDeviations, which is used to compute the skewness.Methods in org.apache.commons.statistics.descriptive that return SumOfCubedDeviations Modifier and Type Method Description (package private) SumOfCubedDeviationsSumOfCubedDeviations. combine(SumOfCubedDeviations other)Combines the state of anotherSumOfCubedDeviationsinto this one.(package private) static SumOfCubedDeviationsSumOfCubedDeviations. create(org.apache.commons.numbers.core.Sum sum, double[] values)Creates the sum of cubed deviations.private static SumOfCubedDeviationsSumOfCubedDeviations. create(SumOfSquaredDeviations ss, double[] values)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.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfCubedDeviations Modifier and Type Method Description (package private) SumOfCubedDeviationsSumOfCubedDeviations. combine(SumOfCubedDeviations other)Combines the state of anotherSumOfCubedDeviationsinto this one.private static SumOfFourthDeviationsSumOfFourthDeviations. create(SumOfCubedDeviations sc, double[] values)Creates the sum of fourth deviations.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfCubedDeviations Constructor Description Skewness(SumOfCubedDeviations sc)Creates an instance with the sum of cubed deviations from the mean.SumOfCubedDeviations(SumOfCubedDeviations source)Copy constructor.SumOfFourthDeviations(double sq, SumOfCubedDeviations sc)Create an instance with the given sum of fourth and squared deviations.
-