Creates an np-chart given the number of defects in a series of samples.

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, 
	int sampleSize, 
	array<int>^ numberDefective
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: System..::.Int32
The number of observations in each sample. It must be at least one.
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