Produces individual measurements and moving range charts.
| Parameter | Description |
|---|---|
| chartsTable | specifies the charts summary output data table. For more information about specifying the chartsTable parameter, see the common casouttable (Form 1) parameter (Appendix A: Common Parameters). |
| ciAlpha | specifies the confidence level that is used to compute capability index confidence limits. Default: 0.05, Minimum value (exclusive): 0 |
| ciIndices | when set to True, computes capability index confidence limits that are based on subgroup summary data. Default: FALSE |
| ciType | specifies the type of confidence limits that are computed for capability indices: lower, upper, or two-sided. Default: TWOSIDED. Values: LOWER, TWOSIDED, UPPER |
| display | specifies a list of results tables to send to the client for display. For more information about specifying the display parameter, see the common displayTables parameter (Appendix A: Common Parameters). |
| exChart | when set to True, includes a control chart in the results only when exceptions occur. Default: FALSE |
| groupByLimit | suppresses the analysis if the number of groups exceeds the specified value. Minimum value: 1 |
| limitsTable | specifies the control limits data table. For more information about specifying the limitsTable parameter, see the common castable (Form 1) parameter (Appendix A: Common Parameters). |
| nMvgRange | specifies the number of consecutive subgroups that are used to calculate the moving range. Default: 2, Range: 2–25 |
| no3SigmaCheck | when set to True, enables tests for special causes when the control limits are not three sigma limits. Default: FALSE |
| outLimitsTable | specifies the output control limits data table. For more information about specifying the outLimitsTable parameter, see the common casouttable (Form 1) parameter (Appendix A: Common Parameters). |
| outputTables | lists the names of results tables to save as CAS tables on the server. For more information about specifying the outputTables parameter, see the common outputTables parameter (Appendix A: Common Parameters). Alias: displayOut |
| primaryTests | requests one or more tests for special causes for the primary control chart. The tests value can be one or more of the following: - test1: requests a test for one point beyond Zone A (outside the control limits). Default: FALSE - test2: requests a test for nine points in a row on one side of the center line. Default: FALSE - test3: requests a test for six points in a row steadily increasing or decreasing. Default: FALSE - test4: requests a test for fourteen points in a row alternating up and down. Default: FALSE - test5: requests a test for two out of three points in a row in Zone A or beyond. Default: FALSE - test6: requests a test for four out of five points in a row in Zone B or beyond. Default: FALSE - test7: requests a test for fifteen points in a row in Zone C (above and below the center line). Default: FALSE - test8: requests a test for eight points in a row on both sides of the center line with none in Zone C. Default: FALSE |
| processName | specifies the variable in the input data table that contains the names of processes to be analyzed. Default: "processName" |
| processValue | specifies the variable in the input data table that contains the process measurements to be analyzed. Default: "process" |
| sigmas | specifies the width of the control limits as a multiple of the standard error of the subgroup summary statistic. Default: 3, Minimum value (exclusive): 0 |
| sMethod | specifies the method of estimating the process standard deviation. Default: MVGRANGE. Values: MAD, MMR, MVGRANGE |
| specsTable | specifies the specification limits data table and computes process capability indices. For more information about specifying the specsTable parameter, see the common castable (Form 1) parameter (Appendix A: Common Parameters). |
| subgroupName | specifies the variable in the input data table that contains the names of subgroup variables. Default: "subgroupName" |
| subgroupValue | specifies the variable in the input data table that contains the subgroup values. Default: "subgroup" |
| table | specifies the settings for an input table. For more information about specifying the table parameter, see the common castable (Form 1) parameter (Appendix A: Common Parameters). |
| test2Run | specifies the length of the pattern for Test 2. Default: 9 |
| test3Run | specifies the length of the pattern for Test 3. Default: 6 |
| testNStd | when set to True, enables tests for special causes with varying subgroup sample sizes. Default: FALSE |
| testOverlap | when set to True, applies tests for special causes to overlapping patterns of points. Default: FALSE |
The HTML document does not contain explicit data creation examples. Here is a generic example for creating a CAS table.
| 1 | DATA mycas.my_table; |
| 2 | INPUT var1 var2; |
| 3 | DATALINES; |
| 4 | 1 10 |
| 5 | 2 20 |
| 6 | 3 30 |
| 7 | ; |
| 8 | RUN; |
| 9 |