Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void QCNPChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997); | Constructs nP-Chart. |
| 2 | void QCNPChart(TVec *Data, TVec *SampleSize, TVec *DrawVec, TVec *CL, TVec *UCL, TVec *LCL, double Confidence); | In this case each sample can have different size. You must store sizes in SampleSize vector. |
Overload 1: void QCNPChart(TVec *Data, int SampleSize, TVec *DrawVec, double &CL, double &UCL, double &LCL, double Confidence = 0.997);
Constructs nP-Chart.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | |
| 2 | SampleSize | int | |
| 3 | DrawVec | TVec * | |
| 4 | CL | double & | |
| 5 | UCL | double & | |
| 6 | LCL | double & | |
| 7 | Confidence = 0.997 | double |
Remarks:
Constructs nP-Chart drawing values, center line, upper and lower control limit. The assumption is all samples have the same SampleSize.
Declared in Dew::Stats::Units::StatControlCharts · Dew.Stats/Units.StatControlCharts.h · Cross-compiler
Overload 2: void QCNPChart(TVec *Data, TVec *SampleSize, TVec *DrawVec, TVec *CL, TVec *UCL, TVec *LCL, double Confidence);
In this case each sample can have different size. You must store sizes in SampleSize vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Data | TVec * | Data to be analyzed. Each value represents number of defects. |
| 2 | SampleSize | TVec * | Sample size. Can be integer or vector. |
| 3 | DrawVec | TVec * | Returns values to be drawn. |
| 4 | CL | TVec * | Returns control Chart centerline. |
| 5 | UCL | TVec * | Returns control Chart upper control limit. |
| 6 | LCL | TVec * | Returns control Chart lower control limit. |
| 7 | Confidence | double | Confidence level for upper and lower control limit. Confidence must lie in the (0,1) interval. |
Remarks:
An exeption is raised if Data and SampleSize length do not match.
See Also: TQCSeries, Dew.Stats.Tee.QCSeries, StatControlCharts::QCPChart, StatControlCharts::QCUChart, StatControlCharts::QCCChart
Declared in Dew::Stats::Units::StatControlCharts · Dew.Stats/Units.StatControlCharts.h · Cross-compiler