Class StandardDeviation
- java.lang.Object
-
- org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
-
- org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic
-
- org.apache.commons.math.stat.descriptive.moment.StandardDeviation
-
- All Implemented Interfaces:
Serializable
,StorelessUnivariateStatistic
,UnivariateStatistic
public class StandardDeviation extends AbstractStorelessUnivariateStatistic implements Serializable
Computes the sample standard deviation. The standard deviation is the positive square root of the variance. This implementation wraps aVariance
instance. TheisBiasCorrected
property of the wrapped Variance instance is exposed, so that this class can be used to compute both the "sample standard deviation" (the square root of the bias-corrected "sample variance") or the "population standard deviation" (the square root of the non-bias-corrected "population variance"). SeeVariance
for more information.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 StandardDeviation()
Constructs a StandardDeviation.StandardDeviation(boolean isBiasCorrected)
Contructs a StandardDeviation with the specified value for theisBiasCorrected
property.StandardDeviation(boolean isBiasCorrected, SecondMoment m2)
Contructs a StandardDeviation with the specified value for theisBiasCorrected
property and the supplied external moment.StandardDeviation(SecondMoment m2)
Constructs a StandardDeviation from an external second moment.StandardDeviation(StandardDeviation original)
Copy constructor, creates a newStandardDeviation
identical to theoriginal
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
Clears the internal state of the StatisticStandardDeviation
copy()
Returns a copy of the statistic with the same internal state.static void
copy(StandardDeviation source, StandardDeviation dest)
Copies source to dest.double
evaluate(double[] values)
Returns the Standard Deviation of the entries in the input array, orDouble.NaN
if the array is empty.double
evaluate(double[] values, double mean)
Returns the Standard Deviation of the entries in the input array, using the precomputed mean value.double
evaluate(double[] values, double mean, int begin, int length)
Returns the Standard Deviation of the entries in the specified portion of the input array, using the precomputed mean value.double
evaluate(double[] values, int begin, int length)
Returns the Standard Deviation of the entries in the specified portion of the input array, orDouble.NaN
if the designated subarray is empty.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.boolean
isBiasCorrected()
void
setBiasCorrected(boolean isBiasCorrected)
-
Methods inherited from class org.apache.commons.math.stat.descriptive.AbstractStorelessUnivariateStatistic
equals, hashCode, incrementAll, incrementAll
-
Methods inherited from class org.apache.commons.math.stat.descriptive.AbstractUnivariateStatistic
evaluate, getData, setData, setData
-
-
-
-
Constructor Detail
-
StandardDeviation
public StandardDeviation()
Constructs a StandardDeviation. Sets the underlyingVariance
instance'sisBiasCorrected
property to true.
-
StandardDeviation
public StandardDeviation(SecondMoment m2)
Constructs a StandardDeviation from an external second moment.- Parameters:
m2
- the external moment
-
StandardDeviation
public StandardDeviation(StandardDeviation original)
Copy constructor, creates a newStandardDeviation
identical to theoriginal
- Parameters:
original
- theStandardDeviation
instance to copy
-
StandardDeviation
public StandardDeviation(boolean isBiasCorrected)
Contructs a StandardDeviation with the specified value for theisBiasCorrected
property. If this property is set totrue
, theVariance
used in computing results will use the bias-corrected, or "sample" formula. SeeVariance
for details.- Parameters:
isBiasCorrected
- whether or not the variance computation will use the bias-corrected formula
-
StandardDeviation
public StandardDeviation(boolean isBiasCorrected, SecondMoment m2)
Contructs a StandardDeviation with the specified value for theisBiasCorrected
property and the supplied external moment. IfisBiasCorrected
is set totrue
, theVariance
used in computing results will use the bias-corrected, or "sample" formula. SeeVariance
for details.- Parameters:
isBiasCorrected
- whether or not the variance computation will use the bias-corrected formulam2
- the external moment
-
-
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:
increment
in interfaceStorelessUnivariateStatistic
- Specified by:
increment
in classAbstractStorelessUnivariateStatistic
- Parameters:
d
- the new value.
-
getN
public long getN()
Returns the number of values that have been added.- Specified by:
getN
in interfaceStorelessUnivariateStatistic
- Returns:
- the number of values.
-
getResult
public double getResult()
Returns the current value of the Statistic.- Specified by:
getResult
in interfaceStorelessUnivariateStatistic
- Specified by:
getResult
in classAbstractStorelessUnivariateStatistic
- Returns:
- value of the statistic,
Double.NaN
if it has been cleared or just instantiated.
-
clear
public void clear()
Clears the internal state of the Statistic- Specified by:
clear
in interfaceStorelessUnivariateStatistic
- Specified by:
clear
in classAbstractStorelessUnivariateStatistic
-
evaluate
public double evaluate(double[] values)
Returns the Standard Deviation of the entries in the input array, orDouble.NaN
if the array is empty.Returns 0 for a single-value (i.e. length = 1) sample.
Throws
IllegalArgumentException
if the array is null.Does not change the internal state of the statistic.
- Specified by:
evaluate
in interfaceUnivariateStatistic
- Overrides:
evaluate
in classAbstractStorelessUnivariateStatistic
- Parameters:
values
- the input array- Returns:
- the standard deviation of the values or Double.NaN if length = 0
- Throws:
IllegalArgumentException
- if the array is null- See Also:
UnivariateStatistic.evaluate(double[])
-
evaluate
public double evaluate(double[] values, int begin, int length)
Returns the Standard Deviation of the entries in the specified portion of the input array, orDouble.NaN
if the designated subarray is empty.Returns 0 for a single-value (i.e. length = 1) sample.
Throws
IllegalArgumentException
if the array is null.Does not change the internal state of the statistic.
- Specified by:
evaluate
in interfaceUnivariateStatistic
- Overrides:
evaluate
in classAbstractStorelessUnivariateStatistic
- Parameters:
values
- the input arraybegin
- index of the first array element to includelength
- the number of elements to include- Returns:
- the standard deviation of the values or Double.NaN if length = 0
- Throws:
IllegalArgumentException
- if the array is null or the array index parameters are not valid- See Also:
UnivariateStatistic.evaluate(double[], int, int)
-
evaluate
public double evaluate(double[] values, double mean, int begin, int length)
Returns the Standard Deviation of the entries in the specified portion of the input array, using the precomputed mean value. ReturnsDouble.NaN
if the designated subarray is empty.Returns 0 for a single-value (i.e. length = 1) sample.
The formula used assumes that the supplied mean value is the arithmetic mean of the sample data, not a known population parameter. This method is supplied only to save computation when the mean has already been computed.
Throws
IllegalArgumentException
if the array is null.Does not change the internal state of the statistic.
- Parameters:
values
- the input arraymean
- the precomputed mean valuebegin
- index of the first array element to includelength
- the number of elements to include- Returns:
- the standard deviation of the values or Double.NaN if length = 0
- Throws:
IllegalArgumentException
- if the array is null or the array index parameters are not valid
-
evaluate
public double evaluate(double[] values, double mean)
Returns the Standard Deviation of the entries in the input array, using the precomputed mean value. ReturnsDouble.NaN
if the designated subarray is empty.Returns 0 for a single-value (i.e. length = 1) sample.
The formula used assumes that the supplied mean value is the arithmetic mean of the sample data, not a known population parameter. This method is supplied only to save computation when the mean has already been computed.
Throws
IllegalArgumentException
if the array is null.Does not change the internal state of the statistic.
- Parameters:
values
- the input arraymean
- the precomputed mean value- Returns:
- the standard deviation of the values or Double.NaN if length = 0
- Throws:
IllegalArgumentException
- if the array is null
-
isBiasCorrected
public boolean isBiasCorrected()
- Returns:
- Returns the isBiasCorrected.
-
setBiasCorrected
public void setBiasCorrected(boolean isBiasCorrected)
- Parameters:
isBiasCorrected
- The isBiasCorrected to set.
-
copy
public StandardDeviation copy()
Returns a copy of the statistic with the same internal state.- Specified by:
copy
in interfaceStorelessUnivariateStatistic
- Specified by:
copy
in interfaceUnivariateStatistic
- Specified by:
copy
in classAbstractStorelessUnivariateStatistic
- Returns:
- a copy of the statistic
-
copy
public static void copy(StandardDeviation source, StandardDeviation dest)
Copies source to dest.Neither source nor dest can be null.
- Parameters:
source
- StandardDeviation to copydest
- StandardDeviation to copy to- Throws:
NullPointerException
- if either source or dest is null
-
-