Creates a p-Chart given the number of defects for a series of samples with equal sample sizes.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: System..::.Int32
The number of observations in each sample. Each sample must contain at least one observation.
numberDefects
Type: array< System..::.Int32 >[]()[]
An array containing the number of defects in each of a series of samples. The number of defects should not be less than zero.

See Also