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
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Consider to use RunningStatistics instead.
See Also