Features: |
ID statement
|
Data set: | SALES |
Format: | MONTHFMT. |
libname proclib
'SAS-library';
options formchar="|----|+|---+=|-/\<>*" fmtsearch=(proclib);
proc timeplot data=sales; plot stove=seller /
npp
ref=1500 refchar=':'
joinref
axis=100 to 3000 by 50;
id month week;
format month monthfmt.;
title 'Weekly Sales of Stoves'; title2 'Compared to Target Sales of $1500'; title3 'K for Kreitz; L for LeGrange'; run;