Dear SAS forumers, Can I please ask if anyone has tried this spread-level plot macro http://www.datavis.ca/sasmac/sprdplot.html? If so, did you manage to run it without problems? When I tried to run it with my data, the error started at line211: %labels(data=_sumry_, x=logm, y=logs, text=left(%scan(&class,1)), size=&htext, pos=2, out=_label_); Here I have enclosed partial log window output if you could explain how it can be resolved please? Thank you much. 17 %labels(data=_sumry_, x=logm, y=logs, text=left(%scan(&class,1)), size=&htext,
-
180
17 ! pos=2, out=_label_); data _slope_; set _parms_(keep=logm); drop logm power;
17 ! xsys='1'; ysys='1'; length text $16 function $8; x = %scan(&sploc,1); y
WARNING: Apparent invocation of macro LABELS not resolved.
SYMBOLGEN: Macro variable CLASS resolves to raps drinkinghelp2
SYMBOLGEN: Macro variable HTEXT resolves to 1.7
MPRINT(SPRDPLOT): %labels(data=_sumry_, x=logm, y=logs, text=left(raps), size=1.7, pos=2,
out=_label_);
NOTE: The previous statement has been deleted.
WARNING: The data set WORK._PARMS_ may be incomplete. When this step was stopped there were 0
observations and 0 variables.
MPRINT(SPRDPLOT): data _slope_;
MPRINT(SPRDPLOT): set _parms_(keep=logm);
ERROR: The variable LOGM in the DROP, KEEP, or RENAME list has never been referenced.
... View more