Features: |
ID statement
|
Other features: |
LABEL statement PROC FORMAT SAS system options: : FMTSEARCH= |
Data set: | SALES |
libname proclib
'SAS-library';
options formchar="|----|+|---+=|-/\<>*" 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;