Features: |
CLASS statement
|
Data set: | SALES |
Format: | MONTHFMT. |
libname proclib
'SAS-library';
options formchar="|----|+|---+=|-/\<>*" fmtsearch=(proclib);
proc timeplot data=sales; class month week;
plot stove=seller / pos=25 ovpchar='!'; plot icebox=seller / pos=25 ovpchar='!' nosymname;
format stove icebox dollar10.2 month monthfmt.;
title 'Weekly Appliance Sales for the First Quarter'; run;