Creates a p-Chart given the defect rates for a series of samples with varying sample sizes.

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

Syntax

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

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
The AxisXY parent of this node.
sampleSize
Type: array< System..::.Int32 >[]()[]
An array containing the number of observations in each sample. It must be at least one.
defectRate
Type: array< System..::.Double >[]()[]
An array containing defect rates of the samples. The defect rates must all be in the range [0,1]. The lengths of the arrays sampleSize and defectRate must be equal.

See Also