|
Chapter Contents |
Previous |
Next |
| MACHART Statement |
A process is required. If more than one process is specified, enclose the list in parentheses. For example, the following statements request distinct moving average charts (each with a span of 3) for WEIGHT, LENGTH, and WIDTH:
proc macontrol data=measures;
machart (weight length width)*day / span=3;
run;
proc macontrol data=values;
machart weight*hour='*' / span=3;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.