CChart Constructor

Initializes a new CChart in the Unfitted state from a vector of defect counts.

Definition

Namespace: Numerics.NET.Statistics.ProcessControl
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.4.0
C#
public CChart(
	Vector<double> defectCounts,
	IIndex? index = null
)

Parameters

defectCounts  Vector<Double>
The ordered baseline defect counts. Must contain at least one value and all values must be non-negative.
index  IIndex  (Optional)
An optional index providing labels or time positions for each observation. When null a default positional index is used.

Exceptions

ArgumentNullExceptiondefectCounts is null.
ArgumentExceptiondefectCounts is empty.

See Also