| Date: | Tue, 31 Oct 2006 12:37:50 -0500 |
| Reply-To: | "data _null_;" <datanull@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "data _null_;" <datanull@GMAIL.COM> |
| Subject: | Re: Graph labels |
|
| In-Reply-To: | <8B79FD9D2AE2AC4F9F55ADDA5715C5BABDB774@PDDMAIL.pdd.net> |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
I think T= refers to the major tick marks from left to right first,
second... not the values displayed. You might get away with just the
following.
value = (t=1 'BL');
On 10/31/06, Jeanina Worden <jworden@pdd.net> wrote:
> I am trying to figure out why a label on my graph is "weird" and was hoping someone from the list could give me some pointers...
>
> The code I have is:
>
> ......
>
> axis1
> label=(h=1 "VISIT WEEK")
> minor=(n=5 h=0.3)
> order=(0 to 144 by 12)
> value = (t=1 'BL' t=12 '12' t=24 '24' t=48 '48' t=96 '96' t=120 '120' t=132 '132' t=144 '144');
>
> axis2 minor=none
> label=(angle=-90 rotate=90 h=1 "MEAN DISTANCE")
> value=(h=1.25)
> order=(100 to &YMAX by 100);
>
> .....
>
> proc gplot data=final3 gout=zip1;
>
> plot trtcd1*visit trtcd0*visit trtcd3*newvis
> /overlay
> legend=legend1
> haxis=axis1
> vaxis=axis2
> name='out1'
> ;
> run;
> quit;
>
> Problem is the titles for the X axis (axis1) come out on the graph as:
>
> BL 12 24 48 96 120 12 144
>
> in the correct positions but I can't get the "12" to be "132" like it should...
>
> Needless to say, graphing is not my specialty so any help/ideas would be appreciated!
>
> Nina
>
|