SAS-Lers,
I haven't had much experience with SAS/GRAPH and I received the following
email and attached eps file from one of our stats. Could someone point
me in the right direction? Thank you. btw, the %ps macro just sets up
the driver and some goptions.
Thanks,
--Casey
Here's the issue. I have created the attached plot in SAS by using an
annotate dataset to put the N's at the bottom. Now, I'd like to move
the "Week" label up and the N's down. I can move the N's downward with
little effort, but I can't figure how how to reposition the axis label
"Week". Any hints? Here's my axis and gplot statements:
axis1 order=(0 to &MAXWK by 4) label=(h=1.5) ;
axis2 order=(0 to 2.5 by 0.1) label=(h=1.3 angle=90 "ALT: Mean Multiple of
the
ULN") ;
%ps(&DIR1/alt_uln_multiple.eps,replace);
goptions dev=pslepsf hsize=6in vsize=4in ;
proc gplot data=mnbygrp anno=anno ;
plot meanplot*calwk /haxis=axis1 vaxis=axis2 legend=legend1 noframe ;
run;
quit;