Date: Thu, 4 Nov 2004 12:22:34 -0800
Reply-To: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Choate, Paul@DDS" <pchoate@DDS.CA.GOV>
Subject: Re: a question of Proc corr
June - Sounds like a job for ODS!
ods output PearsonCorr=r_from_ods;
proc corr data=sashelp.class;
var age height;
run;
ods output close;
Look at the file "work.r_from_ods"
hth
Paul Choate
DDS Data Extraction
(916) 654-2160
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of June
Sent: Thursday, November 04, 2004 12:15 PM
To: SAS-L@LISTSERV.UGA.EDU
Subject: a question of Proc corr
Does any one know how to only output the specific r number when use
the proc corr ?
Like I just want the to see the r is greater than .8 or less than
.-8 among 300 correleations?
What kind of option I could use?
Thanks.