Java org.apache.commons.math.stat.descriptive SummaryStatistics fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.stat.descriptive SummaryStatistics fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.stat.descriptive SummaryStatistics.

The text is from its open source code.

Constructor

SummaryStatistics()
Construct a SummaryStatistics instance

Method

voidaddValue(double value)
Add a value to the data
voidclear()
Resets all statistics and storage
doublegetGeometricMean()
Returns the geometric mean of the values that have been added.
doublegetMax()
Returns the maximum of the values that have been added.
doublegetMean()
Returns the mean of the values that have been added.
doublegetMin()
Returns the minimum of the values that have been added.
longgetN()
Returns the number of available values
doublegetSecondMoment()
Returns a statistic related to the Second Central Moment.
doublegetStandardDeviation()
Returns the standard deviation of the values that have been added.
doublegetSum()
Returns the sum of the values that have been added
doublegetSumsq()
Returns the sum of the squares of the values that have been added.
doublegetVariance()
Returns the variance of the values that have been added.
StorelessUnivariateStatisticgetVarianceImpl()
Returns the currently configured variance implementation
voidsetVarianceImpl(StorelessUnivariateStatistic varianceImpl)

Sets the implementation for the variance.