SampleStandardDeviation Property

Gets the sample standard deviation.

Definition

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public double StandardDeviation { get; }

Property Value

Double

Remarks

This is the standard deviation of the sample values, not the inferred standard deviation of the underlying distribution. This is sometimes called the uncorrected sample standard deviation, because it is a biased estimator of the variance of the underlying population. To obtain an unbiased estimate of the standard deviation of the underlying population, use PopulationStandardDeviation.

See Also