| Date: | Thu, 24 Dec 2009 09:15:00 -0800 |
| Reply-To: | SAS_learner <proccontents@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | SAS_learner <proccontents@GMAIL.COM> |
| Subject: | Proc Gplot (notes and warnings) |
| Content-Type: | text/plain; charset=ISO-8859-1 |
|---|
This is my Proc Gplot code and using this code I am getting couple of
warnings and green notes How to avoid them.
And one simple question this is code I am using from other study not sure
weather the resultant Graph is right or wrong , How do we validate the graph
results ??
PROC GCHART DATA = final ;
by visitnum ;
format trtgrp trt. visitnum vst.;
VBAR cp/ discrete
SUMVAR = pctchange
group=trtgrp
gspace=2
space=3
width=3
nozero
vref=0 LREF=2
patternid=group
RAXIS = AXIS1
MAXIS = AXIS2
gaxis = axis3 ;
run;
quit;
WARNING: The bottom horizontal axis labeled TRTGRP could not be fit as
specified. The axis values will
The SAS System overwrite.
NOTE: The axis frame outline was drawn with line width 2 as specified on the
bottom horizontal axis. Any
other axis line widths were ignored.
NOTE: The above message was for the following BY group: Visit
Number=20
WARNING: The bottom horizontal axis labeled TRTGRP could not be fit as
specified. The axis values will
overwrite.
NOTE: The axis frame outline was drawn with line width 2 as specified on the
bottom horizontal axis. Any
other axis line widths were ignored.
NOTE: The above message was for the following BY group:
Visit Number=20
WARNING: The bottom horizontal axis labeled TRTGRP could not be fit as
specified. The axis values will
overwrite.
NOTE: The axis frame outline was drawn with line width 2 as specified on the
bottom horizontal axis. Any
other axis line widths were ignored.
NOTE: The above message was for the following BY group: Visit Number=20
TIA
SL
|