Date: Wed, 17 Sep 1997 17:01:25 -0400
Reply-To: "Childs, Randy" <RCHILD@ABTI.COM>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Childs, Randy" <RCHILD@ABTI.COM>
Subject: Re: overlay multiple plots
Content-type: text/plain; charset=US-ASCII
<hi ya'll! wondering if anyone can show me how to overlay multiple plots. i
<have 2 plots being overlayed using proc gplot. i want to overlay them over
<another scatter plot that i've created. how the heck do you do that?
<thanx in advance!!
You may want to take advantage of the fact that you can display multiple
graphs
to the same panel in a template and use one of the predefined templates in
SAS.
The following code uses the "WHOLE" (screen) template in SASHELP.TEMPLT.
Here I have simply used the default graphics catalog WORK.GRSEG and the
default graphic names GPLOT, GPLOT1, GPLOT2, etc.
PROC GREPLAY IGOUT=WORK.GRSEG NOFS;
TC SASHELP.TEMPLT;
TEMPLATE WHOLE;
TREPLAY 1:GPLOT 1:GPLOT1 1:GPLOT2 1:GPLOT3
1:GPLOT4 1:GPLOT5 1:GPLOT6 1:GPLOT7;
RUN; QUIT;
Hope this is helpful.
Randy Childs
Alpha-Beta Technology
rchild@abti.com
|