Creates a np-chart given the number of defects in a series of samples, where the number of observations per sample is not constant.

Namespace: Imsl.Chart2D.QC
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public NpChart(
	AxisXY axis,
	int[] sampleSize,
	int[] numberDefective
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	sampleSize As Integer(), _
	numberDefective As Integer() _
)
Visual C++
public:
NpChart(
	AxisXY^ axis, 
	array<int>^ sampleSize, 
	array<int>^ numberDefective
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: array< System..::.Int32 >[]()[]
An array containg the number of observations in each sample. Each sample must contain at least one observation.
numberDefective
Type: array< System..::.Int32 >[]()[]
An array containing the number of defects in each of a series of samples. All of its entries must be nonnegative.

See Also