Date: Thu, 15 Mar 2007 23:10:07 -0400
Reply-To: SAS Hero <wangjx2@SEM.TSINGHUA.EDU.CN>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: SAS Hero <wangjx2@SEM.TSINGHUA.EDU.CN>
Subject: 2 difficult questions about SAS/Graph
Content-Type: text/plain; charset=ISO-8859-1
1. Here's my SAS program:
proc gplot data = temp uniform;
by CNT;
plot CNT * value / overlay vaxis = axis1 noframe ;
run;
quit;
In dataset temp, CNT have 5 values. The result of this program will produce
5 figures. Now I want to produce all in only 1 figure. So what should I do?
2. I want to rotate the figure 90 degree, then make the original x-axis to
y-axis and original y-axis to x-axis. So what should I do?
Thank you.
|