Click or drag to resize
DescriptiveStatistics Constructor (IEnumerableDouble, Boolean)
Initializes a new instance of the DescriptiveStatistics class.

Namespace: MathNet.Numerics.Statistics
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
public DescriptiveStatistics(
	IEnumerable<double> data,
	bool increasedAccuracy = false
)

Parameters

data
Type: System.Collections.GenericIEnumerableDouble
The sample data.
increasedAccuracy (Optional)
Type: SystemBoolean
If set to true, increased accuracy mode used. Increased accuracy mode uses Decimal types for internal calculations.
Remarks
Don't use increased accuracy for data sets containing large values (in absolute value). This may cause the calculations to overflow.
See Also