Namespaces

Types in MathNet.Numerics.Statistics

Type DescriptiveStatistics

Namespace MathNet.Numerics.Statistics

Computes the basic statistics of data set. The class meets the NIST standard of accuracy for mean, variance, and standard deviation (the only statistics they provide exact values for) and exceeds them in increased accuracy mode.

Properties

Public properties

int Count get; set;

Gets the size of the sample.
Value:

double Kurtosis get; set;

Gets the sample kurtosis.
Returns zero if Count is less than four.
Value:

double Maximum get; set;

Gets the maximum sample value.
Value:

double Mean get; set;

Gets the sample mean.
Value:

double Median get; set;

Gets the sample median.
Value:

double Minimum get; set;

Gets the minimum sample value.
Value:

double Skewness get; set;

Gets the sample skewness.
Returns zero if Count is less than three.
Value:

double StandardDeviation get; set;

Gets the sample standard deviation.
Value:

double Variance get; set;

Gets the sample variance.
Value: