PChart Constructor (AxisXY, Int32, Int32) |
Creates a p-Chart given the number of defects for a series of
samples with equal sample sizes.
Namespace: Imsl.Chart2D.QCAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public PChart(
AxisXY axis,
int sampleSize,
int[] numberDefects
)
Public Sub New (
axis As AxisXY,
sampleSize As Integer,
numberDefects As Integer()
)
public:
PChart(
AxisXY^ axis,
int sampleSize,
array<int>^ numberDefects
)
new :
axis : AxisXY *
sampleSize : int *
numberDefects : int[] -> PChart
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
- sampleSize
- Type: SystemInt32
The number of observations in each sample.
Each sample must contain at least one observation.
- numberDefects
- Type: SystemInt32
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