|
Chapter Contents |
Previous |
Next |
| PCHART Statement |
You can use any number of PCHART statements in the SHEWHART procedure. The components of the PCHART 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 p charts for REJECTS and REWORKS:
proc shewhart data=measures;
pchart (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;
pchart rejects*day='*' / subgroupn=100;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.