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 |
dev
Deviation of most recently added value from previous first moment.
|
protected double |
m1
First moment of values that have been added
|
protected double |
m2
Second moment of values that have been added
|
protected long |
n
Count of values that have been added
|
protected double |
nDev
Deviation 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
SecondMoment identical
to the original . |
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, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
aggregate, aggregate
accept, evaluate, incrementAll, incrementAll
evaluate
andThen
protected 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 StorelessUnivariateStatistic
d
- the new value.public void clear()
clear
in interface StorelessUnivariateStatistic
public double getResult()
getResult
in interface StorelessUnivariateStatistic
Double.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 StorelessUnivariateStatistic
copy
in interface UnivariateStatistic
public long getN()
getN
in interface StorelessUnivariateStatistic
protected void aggregate(org.hipparchus.stat.descriptive.moment.FirstMoment other)
other
- the instance to aggregate fromCopyright © 2016–2020 Hipparchus.org. All rights reserved.