DescriptiveStatistics Class |
Namespace: AGI.Foundation
The DescriptiveStatistics type exposes the following members.
| Name | Description | |
|---|---|---|
| Mean |
Calculates the mean of a list of doubles.
| |
| Median |
Calculates the median of a list of doubles.
| |
| PercentileT |
Returns the nth percentile value from the list. The list is assumed to be sorted.
| |
| RootMeanSquare |
Calculates the root mean square (RMS) of a list of doubles.
| |
| StandardDeviation |
Calculates the standard deviation of a list of doubles.
| |
| StandardDeviationNMinusOne |
Calculates the standard deviation of a list of doubles using the N-1 algorithm. If dataList
has one element, returns StandardDeviation(IListDouble).
| |
| StandardError |
The standard error is the Standard deviation of the mean. This implementation uses the StandardDeviationNMinusOne(IListDouble) method.
|