|
Chapter Contents |
Previous |
Next |
| NPCHART Statement |
You can use any number of NPCHART statements in the SHEWHART procedure. The components of the NPCHART statement are described as follows.
A process is required. If you specify more than one process, enclose the list in parentheses. For example, the following statements request distinct np charts for REJECTS and REWORKS:
proc shewhart data=measures;
npchart (rejects reworks)*sample / subgroupn=100;
run;
Note that when data are read from a DATA= data set, the SUBGROUPN= option, which specifies subgroup sample sizes, is required.
proc shewhart data=values;
npchart rejects*day='*' / subgroupn=100;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.