XBarRChartSet.CreateDeployed Method

Creates an XBarRChartSet 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#
public static XBarRChartSet CreateDeployed(
	double meansCenterLine,
	double meansLcl,
	double meansUcl,
	double meansSigma,
	double rangesCenterLine,
	double rangesLcl,
	double rangesUcl,
	double rangesSigma,
	int subgroupSize,
	double grandMean,
	double averageRange
)

Parameters

meansCenterLine  Double
The frozen center line (grand mean) for the Means chart.
meansLcl  Double
The frozen lower control limit for the Means chart.
meansUcl  Double
The frozen upper control limit for the Means chart.
meansSigma  Double
The frozen sigma for the Means chart.
rangesCenterLine  Double
The frozen center line (average range) for the Ranges chart.
rangesLcl  Double
The frozen lower control limit for the Ranges chart.
rangesUcl  Double
The frozen upper control limit for the Ranges chart.
rangesSigma  Double
The frozen sigma for the Ranges chart.
subgroupSize  Int32
The subgroup size originally used to derive the parameters.
grandMean  Double
The grand mean originally estimated.
averageRange  Double
The average range originally estimated.

Return Value

XBarRChartSet
A new XBarRChartSet in the Deployed state.

Remarks

Use this factory when you have pre-computed or externally sourced control limits and want to apply them to new subgroups without re-fitting.

See Also