Date: Tue, 31 Mar 2009 16:39:38 -0400
Reply-To: Kevin Viel <citam.sasl@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Kevin Viel <citam.sasl@GMAIL.COM>
Subject: Re: Bar chart with xaxis on both the sides
On Tue, 31 Mar 2009 16:01:02 -0400, Mike Zdeb <msz03@ALBANY.EDU> wrote:
>hi ... very nice !!!
>
>some suggestion ... if you try ...
>
>* add a POSITION, revert to DATA coordinates fot both x and y (my
own 'tweak' for text, take-it-or-leave-it)
>Data Anno ;
>retain position '8' xsys ysys '2' y 0 function 'label' text 'xx';
>Set mbp (keep = mean c) ;
>X = round(mean) ;
>Text = cat(C);
>Run;
>
>and add ...
>
>* make some room at the bottom
>footnote1 ls=1;
>
>I think that the x-axis labels get placed a bit better
>
>also ...
>
>symbol1 v=point r=22;
>SAS will cycle through the same colors as you get with the 22 SYMBOL
statements
>
>and could try ...
>
>symbol1 v=dot r=22;
>to fill the areas a bit better
>
>and (minutiae) ...
>
>axis2 label = (angle=90 "-Log10(p)" )
>the label is centered without J=C
Thanks, Mike. Those are some gems. I'd hate to think how long it might
have taken me to toy with POSITION. REPEAT was the option I for which I
briefly searched, but I thought it was CYCLE and I looked under GOPTIONS.
Navigating the online docs here at work is annoying. I have to keep
accepting the warning about information being seen by others...
Again, I appreciate the suggestions and corrections. Hopefully, this is
along the lines of what the OP wanted.
-Kevin
|