CusumChartOptions.Sigma Property

Gets the optional explicit process sigma (σ) to use for standardizing observations in the CUSUM recursion.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public double? Sigma { get; init; }

Property Value

Nullable<Double>

Remarks

When non-null, this value is used directly as the process sigma estimate; the SigmaEstimator-based derivation is bypassed. Must be a positive finite number when supplied.

When null (the default), sigma is estimated from the baseline observations using the method specified by SigmaEstimator.

See Also