Click or drag to resize
RunningStatistics Properties

The RunningStatistics type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the total number of samples.
Public propertyKurtosis
Estimates the unbiased population kurtosis from the provided samples. Uses a normalizer (Bessel's correction; type 2). Returns NaN if data has less than four entries or if any entry is NaN.
Public propertyMaximum
Returns the maximum value in the sample data. Returns NaN if data is empty or if any entry is NaN.
Public propertyMean
Evaluates the sample mean, an estimate of the population mean. Returns NaN if data is empty or if any entry is NaN.
Public propertyMinimum
Returns the minimum value in the sample data. Returns NaN if data is empty or if any entry is NaN.
Public propertyPopulationKurtosis
Evaluates the population kurtosis from the full population. Does not use a normalizer and would thus be biased if applied to a subset (type 1). Returns NaN if data has less than three entries or if any entry is NaN.
Public propertyPopulationSkewness
Evaluates the population skewness from the full population. Does not use a normalizer and would thus be biased if applied to a subset (type 1). Returns NaN if data has less than two entries or if any entry is NaN.
Public propertyPopulationStandardDeviation
Evaluates the standard deviation from the provided full population. On a dataset of size N will use an N normalizer and would thus be biased if applied to a subset. Returns NaN if data is empty or if any entry is NaN.
Public propertyPopulationVariance
Evaluates the variance from the provided full population. On a dataset of size N will use an N normalizer and would thus be biased if applied to a subset. Returns NaN if data is empty or if any entry is NaN.
Public propertySkewness
Estimates the unbiased population skewness from the provided samples. Uses a normalizer (Bessel's correction; type 2). Returns NaN if data has less than three entries or if any entry is NaN.
Public propertyStandardDeviation
Estimates the unbiased population standard deviation from the provided samples. On a dataset of size N will use an N-1 normalizer (Bessel's correction). Returns NaN if data has less than two entries or if any entry is NaN.
Public propertyVariance
Estimates the unbiased population variance from the provided samples. On a dataset of size N will use an N-1 normalizer (Bessel's correction). Returns NaN if data has less than two entries or if any entry is NaN.
Top
See Also