Uses of Class
org.apache.commons.statistics.descriptive.SumOfSquaredDeviations
Packages that use SumOfSquaredDeviations
Package
Description
Implementations of univariate statistics.
-
Uses of SumOfSquaredDeviations in org.apache.commons.statistics.descriptive
Subclasses of SumOfSquaredDeviations in org.apache.commons.statistics.descriptiveModifier and TypeClassDescription(package private) class
Computes the sum of cubed deviations from the sample mean.(package private) class
Computes the sum of fourth deviations from the sample mean.Fields in org.apache.commons.statistics.descriptive declared as SumOfSquaredDeviationsModifier and TypeFieldDescriptionprivate final SumOfSquaredDeviations
StandardDeviation.ss
An instance ofSumOfSquaredDeviations
, which is used to compute the standard deviation.private final SumOfSquaredDeviations
Variance.ss
An instance ofSumOfSquaredDeviations
, which is used to compute the variance.Methods in org.apache.commons.statistics.descriptive that return SumOfSquaredDeviationsModifier and TypeMethodDescription(package private) SumOfSquaredDeviations
SumOfSquaredDeviations.combine
(SumOfSquaredDeviations other) Combines the state of anotherSumOfSquaredDeviations
into this one.(package private) static SumOfSquaredDeviations
SumOfSquaredDeviations.create
(org.apache.commons.numbers.core.Sum sum, double[] values) Creates the sum of squared deviations.private static SumOfSquaredDeviations
SumOfSquaredDeviations.create
(FirstMoment m1, double[] values) Creates the sum of squared deviations.(package private) static SumOfSquaredDeviations
SumOfSquaredDeviations.of
(double... values) Returns an instance populated using the inputvalues
.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaredDeviationsModifier and TypeMethodDescription(package private) SumOfSquaredDeviations
SumOfSquaredDeviations.combine
(SumOfSquaredDeviations other) Combines the state of anotherSumOfSquaredDeviations
into this one.private static SumOfCubedDeviations
SumOfCubedDeviations.create
(SumOfSquaredDeviations ss, double[] values) Creates the sum of cubed deviations.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaredDeviationsModifierConstructorDescription(package private)
Creates an instance with the sum of squared deviations from the mean.(package private)
SumOfCubedDeviations
(double sc, SumOfSquaredDeviations ss) Create an instance with the given sum of cubed and squared deviations.(package private)
Copy constructor.(package private)
Creates an instance with the sum of squared deviations from the mean.