Running |
The RunningWeightedStatistics type exposes the following members.
Name | Description | |
---|---|---|
Count | Gets the total number of samples with non-zero weight. | |
EffectiveSampleSize | The Kish's Effective Sample Size | |
Kurtosis | Estimates the unbiased population excess kurtosis from the provided samples. Will use the Bessel correction for reliability weighting. Returns NaN if data has less than four entries or if any entry is NaN. Equivalent formula for this for weighted distributions are unknown. | |
Maximum | Returns the maximum value in the sample data. Returns NaN if data is empty or if any entry is NaN. | |
Mean | Evaluates the sample mean, an estimate of the population mean. Returns NaN if data is empty or if any entry is NaN. | |
Minimum | Returns the minimum value in the sample data. Returns NaN if data is empty or if any entry is NaN. | |
PopulationKurtosis | Evaluates the population excess 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. | |
PopulationSkewness | 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. | |
PopulationStandardDeviation | 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. | |
PopulationVariance | 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. | |
Skewness | Estimates the unbiased population skewness from the provided samples. Will use the Bessel correction for reliability weighting. Returns NaN if data has less than three entries or if any entry is NaN. | |
StandardDeviation | Estimates the unbiased population standard deviation from the provided samples. Will use the Bessel correction for reliability weighting. Returns NaN if data has less than two entries or if any entry is NaN. | |
TotalWeight | Evaluates the total weight of the population. | |
Variance | Estimates the unbiased population variance from the provided samples. Will use the Bessel correction for reliability weighting. Returns NaN if data has less than two entries or if any entry is NaN. |