Summary
Incrementally accumulates basic statistics about a value, one observation at a time, making current estimates
of the underlying distribution available at every point.
Constructors
Instance methods
void | | Adds a new observation, updating all statistics as appropriate. |
void | AddObservations(int count, double mean, double min, double max, double variance) | Adds a number of observations, updating all statistics as appropriate. The nature of the statistics
collected by the class enable this operation by only having similar statistics about the observations being added. |
void | | Removes all observations and resets the class to its initial state. |
Instance properties
double | | Gets the largest value observed so far. |
double | | Gets the sample mean. |
double | | Gets the smallest value observed so far. |
int | | Gets the total number of observations so far. |
double | | Gets the current estimate of the population standard deviation. |
double | | Gets the current estimate of the population standard deviation using an unbiased estimator. |
double | | Gets the current estimate of the population variance. |
double | | Gets the current estimate of the population variance using an unbiased estimator. |