Click or drag to resize
DescriptiveStatistics Class
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.
Inheritance Hierarchy
SystemObject
  MathNet.Numerics.StatisticsDescriptiveStatistics

Namespace: MathNet.Numerics.Statistics
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
public class DescriptiveStatistics

The DescriptiveStatistics type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Gets the size of the sample.
Public propertyKurtosis
Gets the sample kurtosis.
Public propertyMaximum
Gets the maximum sample value.
Public propertyMean
Gets the sample mean.
Public propertyMinimum
Gets the minimum sample value.
Public propertySkewness
Gets the sample skewness.
Public propertyStandardDeviation
Gets the unbiased population standard deviation (on a dataset of size N will use an N-1 normalizer).
Public propertyVariance
Gets the unbiased population variance estimator (on a dataset of size N will use an N-1 normalizer).
Top
Remarks
Consider to use RunningStatistics instead.
See Also