Uses of Class
org.apache.commons.statistics.descriptive.SumOfFourthDeviations
-
Packages that use SumOfFourthDeviations Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of SumOfFourthDeviations in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as SumOfFourthDeviations Modifier and Type Field Description private SumOfFourthDeviations
Kurtosis. sq
An instance ofSumOfFourthDeviations
, which is used to compute the kurtosis.Methods in org.apache.commons.statistics.descriptive that return SumOfFourthDeviations Modifier and Type Method Description (package private) SumOfFourthDeviations
SumOfFourthDeviations. combine(SumOfFourthDeviations other)
Combines the state of anotherSumOfFourthDeviations
into this one.(package private) static SumOfFourthDeviations
SumOfFourthDeviations. create(org.apache.commons.numbers.core.Sum sum, double[] values)
Creates the sum of fourth deviations.private static SumOfFourthDeviations
SumOfFourthDeviations. create(SumOfCubedDeviations sc, double[] values)
Creates the sum of fourth deviations.(package private) static SumOfFourthDeviations
SumOfFourthDeviations. of(double... values)
Returns an instance populated using the inputvalues
.(package private) static SumOfFourthDeviations
SumOfFourthDeviations. of(int... values)
Returns an instance populated using the inputvalues
.(package private) static SumOfFourthDeviations
SumOfFourthDeviations. of(long... values)
Returns an instance populated using the inputvalues
.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfFourthDeviations Modifier and Type Method Description (package private) SumOfFourthDeviations
SumOfFourthDeviations. combine(SumOfFourthDeviations other)
Combines the state of anotherSumOfFourthDeviations
into this one.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfFourthDeviations Constructor Description Kurtosis(SumOfFourthDeviations sq)
Creates an instance with the sum of fourth deviations from the mean.
-