DescriptiveStatistics Methods |
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.
|
![]() ![]() | Percentile<T> |
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(IList<Double>).
|
![]() ![]() | StandardError |
The standard error is the Standard deviation of the mean. This implementation uses the StandardDeviationNMinusOne(IList<Double> ) method.
|