Class SecondMoment
- java.lang.Object
-
- org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
-
- org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic
-
- org.apache.commons.math.stat.descriptive.moment.FirstMoment
-
- org.apache.commons.math.stat.descriptive.moment.SecondMoment
-
- All Implemented Interfaces:
java.io.Serializable,StorelessUnivariateStatistic,UnivariateStatistic
- Direct Known Subclasses:
ThirdMoment
public class SecondMoment extends FirstMoment implements java.io.Serializable
Computes a statistic related to the Second Central Moment. Specifically, what is computed is the sum of squared deviations from the sample mean.The following recursive updating formula is used:
Let
- dev = (current obs - previous mean)
- n = number of observations (including current obs)
new value = old value + dev^2 * (n -1) / n.
Returns
Double.NaNif no data values have been added and returns0if there is just one value in the data set.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()orclear()method, it must be synchronized externally.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SecondMoment()Create a SecondMoment instanceSecondMoment(SecondMoment original)Copy constructor, creates a newSecondMomentidentical to theoriginal
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clears the internal state of the StatisticSecondMomentcopy()Returns a copy of the statistic with the same internal state.static voidcopy(SecondMoment source, SecondMoment dest)Copies source to dest.doublegetResult()Returns the current value of the Statistic.voidincrement(double d)Updates the internal state of the statistic to reflect the addition of the new value.-
Methods inherited from class org.apache.commons.math.stat.descriptive.moment.FirstMoment
copy, getN
-
Methods inherited from class org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic
equals, evaluate, evaluate, hashCode, incrementAll, incrementAll
-
Methods inherited from class org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
evaluate, getData, setData, setData
-
-
-
-
Constructor Detail
-
SecondMoment
public SecondMoment()
Create a SecondMoment instance
-
SecondMoment
public SecondMoment(SecondMoment original)
Copy constructor, creates a newSecondMomentidentical to theoriginal- Parameters:
original- theSecondMomentinstance to copy
-
-
Method Detail
-
increment
public void increment(double d)
Updates the internal state of the statistic to reflect the addition of the new value.- Specified by:
incrementin interfaceStorelessUnivariateStatistic- Overrides:
incrementin classFirstMoment- Parameters:
d- the new value.
-
clear
public void clear()
Clears the internal state of the Statistic- Specified by:
clearin interfaceStorelessUnivariateStatistic- Overrides:
clearin classFirstMoment
-
getResult
public double getResult()
Returns the current value of the Statistic.- Specified by:
getResultin interfaceStorelessUnivariateStatistic- Overrides:
getResultin classFirstMoment- Returns:
- value of the statistic,
Double.NaNif it has been cleared or just instantiated.
-
copy
public SecondMoment copy()
Returns a copy of the statistic with the same internal state.- Specified by:
copyin interfaceStorelessUnivariateStatistic- Specified by:
copyin interfaceUnivariateStatistic- Overrides:
copyin classFirstMoment- Returns:
- a copy of the statistic
-
copy
public static void copy(SecondMoment source, SecondMoment dest)
Copies source to dest.Neither source nor dest can be null.
- Parameters:
source- SecondMoment to copydest- SecondMoment to copy to- Throws:
java.lang.NullPointerException- if either source or dest is null
-
-