PChart Constructor (AxisXY, Int32, Double) |
Creates a p-Chart given the defect rates 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,
double[] defectRate
)
Public Sub New (
axis As AxisXY,
sampleSize As Integer,
defectRate As Double()
)
public:
PChart(
AxisXY^ axis,
int sampleSize,
array<double>^ defectRate
)
new :
axis : AxisXY *
sampleSize : int *
defectRate : float[] -> PChart
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
The AxisXY parent of this node.
- sampleSize
- Type: SystemInt32
The number of observations in each sample.
It must be at least one.
- defectRate
- Type: SystemDouble
An array containing defect rates of the samples.
The defect rates must all be in the range [0,1].
See Also