Chapter Contents |
Previous |
Next |
The TIMEPLOT Procedure |
Procedure features: |
| ||||||
Other features: |
| ||||||
Data set: | SALES |
Program |
libname proclib 'SAS-data-library';
options nodate pageno=1 linesize=80 pagesize=60 fmtsearch=(proclib); |
proc format library=proclib; value monthfmt 1='January' 2='February'; run; |
proc timeplot data=sales; plot icebox='R' / axis=2500 to 3600 by 25; |
id month week; |
label icebox='Refrigerator'; |
format month monthfmt.; title 'Weekly Sales of Refrigerators'; title2 'for the'; title3 'First Six Weeks of the Year'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.