Chapter Contents |
Previous |
Next |
MACHART Statement |
Axis | Input Data Set | Variable |
Horizontal | all | subgroup-variable |
Vertical | DATA= | process |
Vertical | HISTORY= | subgroup mean variable |
Vertical | TABLE= | _UWMA_ |
For example, the following sets of statements specify the label Moving Average of Clip Gaps for the vertical axis and the label Day for the horizontal axis of the moving average chart:
proc macontrol data=clips1; machart gap*day / span=4; label gap = 'Moving Average of Clip Gaps'; label day = 'Day'; run; proc macontrol history=cliphist; machart gap*day / span=4; label gapx = 'Moving Average of Clip Gaps'; label day = 'Day'; run; proc macontrol table=cliptab; machart gap*day; label _uwma_ = 'Moving Average of Clip Gaps'; label day = 'Day'; run;
In this example, the label assignments are in effect only for the duration of the procedure step, and they temporarily override any permanent labels associated with the variables.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.