Individuals Moving Range Chart Set.Create Deployed Method
Creates an IndividualsMovingRangeChartSet directly in the
Deployed state from externally
supplied fitted parameters.
Definition
Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
A new IndividualsMovingRangeChartSet in the Deployed state.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
public static IndividualsMovingRangeChartSet CreateDeployed(
double iCenterLine,
double iLcl,
double iUcl,
double iSigma,
double mrCenterLine,
double mrLcl,
double mrUcl,
double mrSigma,
int movingRangeWidth = 2,
SigmaEstimator sigmaEstimator = SigmaEstimator.MovingRange
)Parameters
- iCenterLine Double
- The frozen center line for the Individuals chart.
- iLcl Double
- The frozen lower control limit for the Individuals chart.
- iUcl Double
- The frozen upper control limit for the Individuals chart.
- iSigma Double
- The frozen sigma for the Individuals chart.
- mrCenterLine Double
- The frozen center line for the Moving Ranges chart.
- mrLcl Double
- The frozen lower control limit for the Moving Ranges chart.
- mrUcl Double
- The frozen upper control limit for the Moving Ranges chart.
- mrSigma Double
- The frozen sigma for the Moving Ranges chart.
- movingRangeWidth Int32 (Optional)
- The moving range window width. Defaults to 2.
- sigmaEstimator SigmaEstimator (Optional)
- The sigma estimator originally used to derive the parameters. Defaults to MovingRange.
Return Value
IndividualsMovingRangeChartSetA new IndividualsMovingRangeChartSet in the Deployed state.
Remarks
Use this factory when you have pre-computed or externally sourced control limits (for example, from a historical study) and want to apply them to new observations without re-fitting.