public class SecondMoment extends AbstractStorelessUnivariateStatistic implements AggregatableStatistic<SecondMoment>, Serializable
The following recursive updating formula is used:
Let
new value = old value + dev^2 * (n - 1) / n.
 Returns Double.NaN if no data values have been added and
 returns 0 if there is just one value in the data set.
 Note that Double.NaN may also be returned if the input includes NaN
 and / or infinite values.
 
 Note that this implementation is not synchronized. If
 multiple threads access an instance of this class concurrently, and at least
 one of the threads invokes the increment() or
 clear() method, it must be synchronized externally.
| Modifier and Type | Field and Description | 
|---|---|
| protected double | devDeviation of most recently added value from previous first moment. | 
| protected double | m1First moment of values that have been added | 
| protected double | m2Second moment of values that have been added | 
| protected long | nCount of values that have been added | 
| protected double | nDevDeviation of most recently added value from previous first moment,
 normalized by previous sample size. | 
| Constructor and Description | 
|---|
| SecondMoment()Create a SecondMoment instance. | 
| SecondMoment(SecondMoment original)Copy constructor, creates a new  SecondMomentidentical
 to theoriginal. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | aggregate(org.hipparchus.stat.descriptive.moment.FirstMoment other)Aggregates the results of the provided instance
 into this instance. | 
| void | aggregate(SecondMoment other)Aggregates the provided instance into this instance. | 
| void | clear()Clears the internal state of the Statistic | 
| SecondMoment | copy()Returns a copy of the statistic with the same internal state. | 
| long | getN()Returns the number of values that have been added. | 
| double | getResult()Returns the current value of the Statistic. | 
| void | increment(double d)Updates the internal state of the statistic to reflect the addition of the new value. | 
equals, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitaggregate, aggregateaccept, evaluate, incrementAll, incrementAllevaluateandThenprotected double m2
protected long n
protected double m1
protected double dev
protected double nDev
public SecondMoment()
public SecondMoment(SecondMoment original) throws NullArgumentException
SecondMoment identical
 to the original.original - the SecondMoment instance to copyNullArgumentException - if original is nullpublic void increment(double d)
increment in interface StorelessUnivariateStatisticd - the new value.public void clear()
clear in interface StorelessUnivariateStatisticpublic double getResult()
getResult in interface StorelessUnivariateStatisticDouble.NaN if it
 has been cleared or just instantiated.public void aggregate(SecondMoment other)
This method can be used to combine statistics computed over partitions or subsamples - i.e., the value of this instance after this operation should be the same as if a single statistic would have been applied over the combined dataset.
aggregate in interface AggregatableStatistic<SecondMoment>other - the instance to aggregate into this instancepublic SecondMoment copy()
copy in interface StorelessUnivariateStatisticcopy in interface UnivariateStatisticpublic long getN()
getN in interface StorelessUnivariateStatisticprotected void aggregate(org.hipparchus.stat.descriptive.moment.FirstMoment other)
other - the instance to aggregate fromCopyright © 2016–2020 Hipparchus.org. All rights reserved.