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) classComputes the sum of cubed deviations from the sample mean.(package private) classComputes the sum of fourth deviations from the sample mean.Fields in org.apache.commons.statistics.descriptive declared as SumOfSquaredDeviationsModifier and TypeFieldDescriptionprivate final SumOfSquaredDeviationsStandardDeviation.ssAn instance ofSumOfSquaredDeviations, which is used to compute the standard deviation.private final SumOfSquaredDeviationsVariance.ssAn instance ofSumOfSquaredDeviations, which is used to compute the variance.Methods in org.apache.commons.statistics.descriptive that return SumOfSquaredDeviationsModifier and TypeMethodDescription(package private) SumOfSquaredDeviationsSumOfSquaredDeviations.combine(SumOfSquaredDeviations other) Combines the state of anotherSumOfSquaredDeviationsinto this one.private static SumOfSquaredDeviationsSumOfSquaredDeviations.create(FirstMoment m1, double[] values, int from, int to) Creates the sum of squared deviations.(package private) static SumOfSquaredDeviationsSumOfSquaredDeviations.createFromRange(org.apache.commons.numbers.core.Sum sum, double[] values, int from, int to) Creates the sum of squared deviations.(package private) static SumOfSquaredDeviationsSumOfSquaredDeviations.of(double... values) Returns an instance populated using the inputvalues.(package private) static SumOfSquaredDeviationsSumOfSquaredDeviations.ofRange(double[] 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 SumOfSquaredDeviationsModifier and TypeMethodDescription(package private) SumOfSquaredDeviationsSumOfSquaredDeviations.combine(SumOfSquaredDeviations other) Combines the state of anotherSumOfSquaredDeviationsinto this one.private static SumOfCubedDeviationsSumOfCubedDeviations.create(SumOfSquaredDeviations ss, double[] values, int from, int to) 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.