PChart.Series Property

Gets the P chart data series. Returns a PointwiseLimitSeries when variable sample sizes produce per-point limits, or a FixedLimitSeries when a constant sample size was used.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public ControlSeries Series { get; }

Property Value

ControlSeries

Remarks

Available after Analyze() has been called (i.e., in Fitted and Deployed states).

Use HasVariableSizes to determine which concrete type is returned at runtime. In the Deployed state, pointwise limit vectors and observation values are not available; only the scalar CenterLine (equal to PooledFractionNonconforming) is retained.

Exceptions

InvalidOperationException The chart is in the Unfitted state.

See Also