Merges this Stats with a single value, producing the cumulative stats.
Merges this Stats with a set of values, producing the cumulative stats.
Merges this Stats with another instance, producing the cumulative stats.
Returns the coefficient of variation.
Overrides to account for empty stats with NaN values.
Overrides to account for empty stats with NaN values.
Merges this Stats with a set of values, producing the cumulative stats.
Merges this Stats with a single value, producing the cumulative stats.
Merges this Stats with another instance, producing the cumulative stats.
Return the sample standard deviation of the values, which corrects for bias in estimating the variance by dividing by N-1 instead of N.
Return the sample variance, which corrects for bias in estimating the variance by dividing by N-1 instead of N.
Returns the standard deviation of the values.
Returns the sum of the distribution.
Returns a string representation of this distribution.
Returns a string representation of this distribution.
Returns the variance of the distribution.
A class for tracking the statistics of a set of numbers (count, mean and variance) in a numerically robust way. Includes support for merging two Stats objects. Based on Welford and Chan's algorithms for running variance.