Chapter Contents |
Previous |
Next |
The CALENDAR Procedure |
Procedure features: |
| |||||||||
Other features: |
|
MEAN Values by Number of Days |
Program |
data closed; input date date. holiday $ 11-25; datalines; 26DEC96 Repairs 27DEC96 Repairs 30DEC96 Repairs 31DEC96 Repairs 24DEC96 Christmas Eve 25DEC96 Christmas ; |
proc sort data=meals; by date; run; |
proc format; picture bfmt other = '000 Brkfst'; picture lfmt other = '000 Lunch '; picture dfmt other = '000 Dinner'; run; |
options nodate pageno=1 linesize=132 pagesize=60; |
proc calendar data=meals holidata=closed; start date; |
holistart date; holiname holiday; |
Output |
Summary Calendar with MEAN Values by Observation
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.