Features: |
PROC TIMEPLOT statement options: : MAXDEC=
|
Data set: | SALES |
options formchar="|----|+|---+=|-/\<>*";
proc timeplot data=sales maxdec=0;
plot stove=seller icebox='R' /
overlay
ref=mean(stove icebox)
reverse;
label icebox='Refrigerators';
title 'Weekly Sales of Stoves and Refrigerators'; title2 'for the'; title3 'First Six Weeks of the Year'; run;