StandardBaseline Class

Frozen baseline for charts with fixed scalar control limits. Used for Individuals (I), Moving Range (MR), C, XBar, R, S, and NP charts.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public class StandardBaseline : IBaseline
Inheritance
Object  →  StandardBaseline
Implements
IBaseline

Remarks

A StandardBaseline captures the stable-process parameters estimated during Phase I analysis. In Phase II, incoming observations are evaluated against these frozen parameters rather than being re-estimated from new data.

The optional SubgroupSize is set for charts that operate on subgrouped data (XBar, R, S, NP). It is null for individual-observation charts (I, MR, C).

Constructors

StandardBaselineInitializes a new instance of the StandardBaseline class

Properties

CenterLineGets the frozen center line.
LowerControlLimitGets the frozen lower control limit.
SigmaGets the frozen process sigma.
SubgroupSize Gets the frozen subgroup (sample) size, or null for charts that do not operate on fixed-size subgroups.
UpperControlLimitGets the frozen upper control limit.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
FromJson Reconstructs a StandardBaseline from a JSON string previously produced by ToJson().
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToJson Serializes this baseline to a JSON string suitable for long-term storage.
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also