Date: Tue, 29 Sep 2009 09:08:35 -0700
Reply-To: demin <qdmiris@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: demin <qdmiris@GMAIL.COM>
Organization: http://groups.google.com
Subject: proc corr can do like this var1 *(var2 var3 var4...) ?
Content-Type: text/plain; charset=ISO-8859-1
proc corr can do like this var1 *(var2 var3 var4...) ?
similar as in proc freq:tables A*(B C);
In SAS help, proc corr Syntax about var:VAR variables , seems no
method to do this, right? so I think I have to do
proc corr data=aaa outp=bbb;
var var1 var2 var3 var4...;
run;
and then choose one column from the output table bbb.
Is this the only choice? thanks.
|