|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.stat.descriptive.SummaryStatistics
org.apache.commons.math.stat.descriptive.SynchronizedSummaryStatistics
public class SynchronizedSummaryStatistics
Implementation of
SummaryStatistics that
is safe to use in a multithreaded environment. Multiple threads can safely
operate on a single instance without causing runtime exceptions due to race
conditions. In effect, this implementation makes modification and access
methods atomic operations for a single instance. That is to say, as one
thread is computing a statistic from the instance, no other thread can modify
the instance nor compute another statistic.
| Field Summary |
|---|
| Fields inherited from class org.apache.commons.math.stat.descriptive.SummaryStatistics |
|---|
geoMean, max, mean, min, n, secondMoment, sum, sumLog, sumsq, variance |
| Constructor Summary | |
|---|---|
SynchronizedSummaryStatistics()
Construct a SynchronizedSummaryStatistics instance |
|
| Method Summary | |
|---|---|
void |
addValue(double value)
Add a value to the data |
void |
clear()
Resets all statistics and storage |
boolean |
equals(java.lang.Object object)
Returns true iff object is a SummaryStatistics
instance and all statistics have the same values as this. |
StorelessUnivariateStatistic |
getGeoMeanImpl()
Returns the currently configured geometric mean implementation |
double |
getGeometricMean()
Returns the geometric mean of the values that have been added. |
double |
getMax()
Returns the maximum of the values that have been added. |
StorelessUnivariateStatistic |
getMaxImpl()
Returns the currently configured maximum implementation |
double |
getMean()
Returns the mean of the values that have been added. |
StorelessUnivariateStatistic |
getMeanImpl()
Returns the currently configured mean implementation |
double |
getMin()
Returns the minimum of the values that have been added. |
StorelessUnivariateStatistic |
getMinImpl()
Returns the currently configured minimum implementation |
long |
getN()
Returns the number of available values |
double |
getStandardDeviation()
Returns the standard deviation of the values that have been added. |
double |
getSum()
Returns the sum of the values that have been added |
StorelessUnivariateStatistic |
getSumImpl()
Returns the currently configured Sum implementation |
StorelessUnivariateStatistic |
getSumLogImpl()
Returns the currently configured sum of logs implementation |
StatisticalSummary |
getSummary()
Return a StatisticalSummaryValues instance reporting current
statistics. |
double |
getSumsq()
Returns the sum of the squares of the values that have been added. |
StorelessUnivariateStatistic |
getSumsqImpl()
Returns the currently configured sum of squares implementation |
double |
getVariance()
Returns the variance of the values that have been added. |
StorelessUnivariateStatistic |
getVarianceImpl()
Returns the currently configured variance implementation |
int |
hashCode()
Returns hash code based on values of statistics |
void |
setGeoMeanImpl(StorelessUnivariateStatistic geoMeanImpl)
Sets the implementation for the geometric mean. |
void |
setMaxImpl(StorelessUnivariateStatistic maxImpl)
Sets the implementation for the maximum. |
void |
setMeanImpl(StorelessUnivariateStatistic meanImpl)
Sets the implementation for the mean. |
void |
setMinImpl(StorelessUnivariateStatistic minImpl)
Sets the implementation for the minimum. |
void |
setSumImpl(StorelessUnivariateStatistic sumImpl)
Sets the implementation for the Sum. |
void |
setSumLogImpl(StorelessUnivariateStatistic sumLogImpl)
Sets the implementation for the sum of logs. |
void |
setSumsqImpl(StorelessUnivariateStatistic sumsqImpl)
Sets the implementation for the sum of squares. |
void |
setVarianceImpl(StorelessUnivariateStatistic varianceImpl)
Sets the implementation for the variance. |
java.lang.String |
toString()
Generates a text report displaying summary statistics from values that have been added. |
| Methods inherited from class org.apache.commons.math.stat.descriptive.SummaryStatistics |
|---|
getSumOfLogs, newInstance, newInstance |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public SynchronizedSummaryStatistics()
| Method Detail |
|---|
public StatisticalSummary getSummary()
SummaryStatisticsStatisticalSummaryValues instance reporting current
statistics.
getSummary in class SummaryStatisticsSummaryStatistics.getSummary()public void addValue(double value)
SummaryStatistics
addValue in class SummaryStatisticsvalue - the value to addSummaryStatistics.addValue(double)public long getN()
SummaryStatistics
getN in interface StatisticalSummarygetN in class SummaryStatisticsSummaryStatistics.getN()public double getSum()
SummaryStatistics
getSum in interface StatisticalSummarygetSum in class SummaryStatisticsDouble.NaN if no values have been addedSummaryStatistics.getSum()public double getSumsq()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getSumsq in class SummaryStatisticsSummaryStatistics.getSumsq()public double getMean()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getMean in interface StatisticalSummarygetMean in class SummaryStatisticsSummaryStatistics.getMean()public double getStandardDeviation()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getStandardDeviation in interface StatisticalSummarygetStandardDeviation in class SummaryStatisticsSummaryStatistics.getStandardDeviation()public double getVariance()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getVariance in interface StatisticalSummarygetVariance in class SummaryStatisticsSummaryStatistics.getVariance()public double getMax()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getMax in interface StatisticalSummarygetMax in class SummaryStatisticsSummaryStatistics.getMax()public double getMin()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getMin in interface StatisticalSummarygetMin in class SummaryStatisticsSummaryStatistics.getMin()public double getGeometricMean()
SummaryStatisticsDouble.NaN is returned if no values have been added.
getGeometricMean in class SummaryStatisticsSummaryStatistics.getGeometricMean()public java.lang.String toString()
SummaryStatistics
toString in class SummaryStatisticsSummaryStatistics.toString()public void clear()
SummaryStatistics
clear in class SummaryStatisticsSummaryStatistics.clear()public boolean equals(java.lang.Object object)
SummaryStatisticsobject is a SummaryStatistics
instance and all statistics have the same values as this.
equals in class SummaryStatisticsobject - the object to test equality against.
SummaryStatistics.equals(Object)public int hashCode()
SummaryStatistics
hashCode in class SummaryStatisticsSummaryStatistics.hashCode()public StorelessUnivariateStatistic getSumImpl()
SummaryStatistics
getSumImpl in class SummaryStatisticsSummaryStatistics.getSumImpl()public void setSumImpl(StorelessUnivariateStatistic sumImpl)
SummaryStatisticsSets the implementation for the Sum.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setSumImpl in class SummaryStatisticssumImpl - the StorelessUnivariateStatistic instance to use
for computing the SumSummaryStatistics.setSumImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getSumsqImpl()
SummaryStatistics
getSumsqImpl in class SummaryStatisticsSummaryStatistics.getSumsqImpl()public void setSumsqImpl(StorelessUnivariateStatistic sumsqImpl)
SummaryStatisticsSets the implementation for the sum of squares.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setSumsqImpl in class SummaryStatisticssumsqImpl - the StorelessUnivariateStatistic instance to use
for computing the sum of squaresSummaryStatistics.setSumsqImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getMinImpl()
SummaryStatistics
getMinImpl in class SummaryStatisticsSummaryStatistics.getMinImpl()public void setMinImpl(StorelessUnivariateStatistic minImpl)
SummaryStatisticsSets the implementation for the minimum.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setMinImpl in class SummaryStatisticsminImpl - the StorelessUnivariateStatistic instance to use
for computing the minimumSummaryStatistics.setMinImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getMaxImpl()
SummaryStatistics
getMaxImpl in class SummaryStatisticsSummaryStatistics.getMaxImpl()public void setMaxImpl(StorelessUnivariateStatistic maxImpl)
SummaryStatisticsSets the implementation for the maximum.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setMaxImpl in class SummaryStatisticsmaxImpl - the StorelessUnivariateStatistic instance to use
for computing the maximumSummaryStatistics.setMaxImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getSumLogImpl()
SummaryStatistics
getSumLogImpl in class SummaryStatisticsSummaryStatistics.getSumLogImpl()public void setSumLogImpl(StorelessUnivariateStatistic sumLogImpl)
SummaryStatisticsSets the implementation for the sum of logs.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setSumLogImpl in class SummaryStatisticssumLogImpl - the StorelessUnivariateStatistic instance to use
for computing the log sumSummaryStatistics.setSumLogImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getGeoMeanImpl()
SummaryStatistics
getGeoMeanImpl in class SummaryStatisticsSummaryStatistics.getGeoMeanImpl()public void setGeoMeanImpl(StorelessUnivariateStatistic geoMeanImpl)
SummaryStatisticsSets the implementation for the geometric mean.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setGeoMeanImpl in class SummaryStatisticsgeoMeanImpl - the StorelessUnivariateStatistic instance to use
for computing the geometric meanSummaryStatistics.setGeoMeanImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getMeanImpl()
SummaryStatistics
getMeanImpl in class SummaryStatisticsSummaryStatistics.getMeanImpl()public void setMeanImpl(StorelessUnivariateStatistic meanImpl)
SummaryStatisticsSets the implementation for the mean.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setMeanImpl in class SummaryStatisticsmeanImpl - the StorelessUnivariateStatistic instance to use
for computing the meanSummaryStatistics.setMeanImpl(StorelessUnivariateStatistic)public StorelessUnivariateStatistic getVarianceImpl()
SummaryStatistics
getVarianceImpl in class SummaryStatisticsSummaryStatistics.getVarianceImpl()public void setVarianceImpl(StorelessUnivariateStatistic varianceImpl)
SummaryStatisticsSets the implementation for the variance.
This method must be activated before any data has been added - i.e.,
before addValue has been used to add data;
otherwise an IllegalStateException will be thrown.
setVarianceImpl in class SummaryStatisticsvarianceImpl - the StorelessUnivariateStatistic instance to use
for computing the varianceSummaryStatistics.setVarianceImpl(StorelessUnivariateStatistic)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||