| Date: | Wed, 15 Dec 2004 07:48:07 -0500 |
| Reply-To: | Ben <benpub7@YAHOO.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Ben <benpub7@YAHOO.COM> |
| Subject: | gplot, plot and plot2 |
|---|
Here is my new questions related to gplot:
***************************************;
data x;
do i=1 to 10;
y1=rand('binomial',100,0.3);
y2=rand('binomial',100,0.4);
output;
end;
run;
goptions cback=white gunit=pct htext=3;
symbol1 c=black i=join w=3;
symbol2 c=gray i=join w=10;
proc gplot data=x;
plot y1*i=1;
plot2 y2*i=2;
run;
for some reason, I want to y2 as background, y1 on the top layer. y1
reponse variable axis 'd be better be on left side. (I have already use
heavy annotate dataset for CI on this graph.)
many thanks
|