Date: Wed, 11 Jul 2001 08:55:37 -0400
Reply-To: Droogendyk Bill <bill_droogendyk@DOFASCO.CA>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Droogendyk Bill <bill_droogendyk@DOFASCO.CA>
Subject: Re: overlay
Content-Type: text/plain
Carlos:
Based on my understanding of your question, I've changed the plot section of
your code as per below.
1. All symbol statements require a number
2. Only one plot statement is required to overlay all these plots. (Each
plot statement starts a new graph)
symbol1 v=dot i=rq c=blue;
symbol2 v=plus i=rq c=red;
symbol3 v=circle i=rq c=yellow;
symbol4 v=star i=rq c=green;
proc gplot data=TODOS;
plot (Solo Foliar Fertirri Media)*Tempo/overlay;
run;
quit;
Is this what you're looking for?
W.(Bill) Droogendyk
Quality Systems
Dofasco Inc. Hamilton ON Canada
905 548 7200 x3359
SAS: Anything else is just a toy!
> -----Original Message-----
> From: Carlos Tadeu [SMTP:ctadeu@NOETHER.EX.AC.UK]
> Sent: Friday, 11 July, 1997 07:52
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: overlay
>
> Dear SAS-l,
> I would like to place all these graphics together and the respective
> colors. Attach program code.
>
> Thanks for any help
> Carlos Tadeu
> << File: PROGRAM.TXT >>