Uses of Class
org.apache.commons.statistics.descriptive.SumOfSquaredDeviations
-
Packages that use SumOfSquaredDeviations Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of SumOfSquaredDeviations in org.apache.commons.statistics.descriptive
Subclasses of SumOfSquaredDeviations in org.apache.commons.statistics.descriptive Modifier and Type Class Description (package private) classSumOfCubedDeviationsComputes the sum of cubed deviations from the sample mean.(package private) classSumOfFourthDeviationsComputes the sum of fourth deviations from the sample mean.Fields in org.apache.commons.statistics.descriptive declared as SumOfSquaredDeviations Modifier and Type Field Description private SumOfSquaredDeviationsStandardDeviation. ssAn instance ofSumOfSquaredDeviations, which is used to compute the standard deviation.private SumOfSquaredDeviationsVariance. ssAn instance ofSumOfSquaredDeviations, which is used to compute the variance.Methods in org.apache.commons.statistics.descriptive that return SumOfSquaredDeviations Modifier and Type Method Description (package private) SumOfSquaredDeviationsSumOfSquaredDeviations. combine(SumOfSquaredDeviations other)Combines the state of anotherSumOfSquaredDeviationsinto this one.(package private) static SumOfSquaredDeviationsSumOfSquaredDeviations. create(org.apache.commons.numbers.core.Sum sum, double[] values)Creates the sum of squared deviations.private static SumOfSquaredDeviationsSumOfSquaredDeviations. create(FirstMoment m1, double[] values)Creates the sum of squared deviations.(package private) static SumOfSquaredDeviationsSumOfSquaredDeviations. of(double... values)Returns an instance populated using the inputvalues.Methods in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaredDeviations Modifier and Type Method Description (package private) SumOfSquaredDeviationsSumOfSquaredDeviations. combine(SumOfSquaredDeviations other)Combines the state of anotherSumOfSquaredDeviationsinto this one.private static SumOfCubedDeviationsSumOfCubedDeviations. create(SumOfSquaredDeviations ss, double[] values)Creates the sum of cubed deviations.Constructors in org.apache.commons.statistics.descriptive with parameters of type SumOfSquaredDeviations Constructor Description StandardDeviation(SumOfSquaredDeviations ss)Creates an instance with the sum of squared deviations from the mean.SumOfCubedDeviations(double sc, SumOfSquaredDeviations ss)Create an instance with the given sum of cubed and squared deviations.SumOfSquaredDeviations(SumOfSquaredDeviations source)Copy constructor.Variance(SumOfSquaredDeviations ss)Creates an instance with the sum of squared deviations from the mean.
-