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) class
SumOfFourthDeviations
Computes 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 SumOfCubedDeviations
Skewness. sc
An 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) SumOfCubedDeviations
SumOfCubedDeviations. combine(SumOfCubedDeviations other)
Combines the state of anotherSumOfCubedDeviations
into this one.(package private) static SumOfCubedDeviations
SumOfCubedDeviations. create(org.apache.commons.numbers.core.Sum sum, double[] values)
Creates the sum of cubed deviations.private static SumOfCubedDeviations
SumOfCubedDeviations. create(SumOfSquaredDeviations ss, double[] values)
Creates the sum of cubed deviations.(package private) static SumOfCubedDeviations
SumOfCubedDeviations. of(double... values)
Returns an instance populated using the inputvalues
.(package private) static SumOfCubedDeviations
SumOfCubedDeviations. of(int... values)
Returns an instance populated using the inputvalues
.(package private) static SumOfCubedDeviations
SumOfCubedDeviations. 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) SumOfCubedDeviations
SumOfCubedDeviations. combine(SumOfCubedDeviations other)
Combines the state of anotherSumOfCubedDeviations
into this one.private static SumOfFourthDeviations
SumOfFourthDeviations. 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.
-