XBarSChartSet.Apply Method

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0

Overload List

Apply(Matrix<Double>) Applies new subgroup data to this Deployed chart and returns a new XBarSChartSet in the Fitted state using the frozen baseline limits.
Apply(Vector<Double>) Applies new observations to this Deployed chart and returns a new TChart in the Fitted state.

Apply(Matrix<Double>)

Applies new subgroup data to this Deployed chart and returns a new XBarSChartSet in the Fitted state using the frozen baseline limits.
C#
public XBarSChartSet Apply(
	Matrix<double> data
)

Parameters

data  Matrix<Double>
The new subgroups to apply. Must have the same number of columns (subgroup size) as the original chart.

Return Value

XBarSChartSet
A new XBarSChartSet in the Fitted state.

Exceptions

InvalidOperationException The chart is not in the Deployed state.
ArgumentNullExceptiondata is null.
ArgumentExceptiondata is empty or has a different column count than the original chart's subgroup size.

See Also