Date: Wed, 9 Nov 2005 16:15:15 -0800
Reply-To: David Fickbohm <davefickbohm@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: David Fickbohm <davefickbohm@YAHOO.COM>
Subject: proc freq to find variable most correlated to x
Content-Type: text/plain; charset=iso-8859-1
People,
I want to use proc freq to find among variable X what other variable, A,B or C is most correlated to Y.
I think that the following will do this.
proc freq data = xxx;
tables Y * (a,b,c) / measures;
where x = 1;
run;
Am I correct ?
Thanks
Dave
|