SampleVariance Property

Gets the sample variance.

Definition

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

Property Value

Double

Remarks

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

See Also