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

Example usage for Java org.apache.commons.math3.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.math3.stat.descriptive SummaryStatistics.

The text is from its open source code.

Subclass

org.apache.commons.math3.stat.descriptive.SummaryStatistics has subclasses.
Click this link to see all its subclasses.

Constructor

SummaryStatistics()
Construct a SummaryStatistics instance

Method

voidaddValue(double value)
Add a value to the data
voidclear()
Resets all statistics and storage
voidcopy(SummaryStatistics source, SummaryStatistics dest)
Copies source to dest.
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
doublegetPopulationVariance()
Returns the population variance of the values that have been added.
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
StatisticalSummarygetSummary()
Return a StatisticalSummaryValues instance reporting current statistics.
doublegetSumOfLogs()
Returns the sum of the logs of the values that have been added.
doublegetSumsq()
Returns the sum of the squares of the values that have been added.
doublegetVariance()
Returns the (sample) variance of the available values.
StorelessUnivariateStatisticgetVarianceImpl()
Returns the currently configured variance implementation
voidsetSumLogImpl(StorelessUnivariateStatistic sumLogImpl)

Sets the implementation for the sum of logs.

voidsetVarianceImpl(StorelessUnivariateStatistic varianceImpl)

Sets the implementation for the variance.