From: SAS_learner on
Hello All,

I am trying to generate a graph on SAS 9.2 using annotation and using
following code .To display Study day on the graph (Best %change from
base-line) I am getting following error . Not sure what to change in anno
data set and how to display Ticks on the X-axis . Can some body educate me
please.


axis1 label=(a=90 H=3 "Percent Change") VALUE=(H=2)
ORDER=(-115 TO 115 BY 10) WIDTH=1 MINOR=NONE ;
axis2 label=(h=2 "Subject") value=(h=1 angle=65 %mktick)
minor=(n=1) width=2
;

219 *Use the proc gchart method:*;
220 PROC GCHART DATA=best;
221 VBAR prtdiff /
222 DISCRETE
223 subgroup=armcd
224
225 raxis=axis1
226 maxis=axis2
227 coutline=black
228 SUMVAR=prtdiff
229 anno=anno
230 ;
231 run;

WARNING: The MINOR= option on AXIS statement 2 was ignored because the
PRTDIFF axis does not support
MINOR=.
WARNING: The intervals on the axis labeled PRTDIFF are not evenly spaced.
NOTE: ERROR DETECTED IN ANNOTATE= DATASET WORK.ANNO.
NOTE: PROBLEM IN OBSERVATION 1 -

Thanks
SL
 | 
Pages: 1
Prev: Import a text file
Next: Proc Plan?