Date: Tue, 23 Oct 2001 07:34:48 -0700
Reply-To: Vadim Pliner <vadim.pliner@VERIZONWIRELESS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Vadim Pliner <vadim.pliner@VERIZONWIRELESS.COM>
Organization: http://groups.google.com/
Subject: Re: Proc Corr
Content-Type: text/plain; charset=ISO-8859-1
The code below will compute the partial Pearson correlation between A
and B with C partialed out.
proc corr;
var A B;
partial C;
run;
Vadim Pliner
"Gianluca" <gianluca.marchi@italy.acnielsen.com> wrote in message news:<9r3f45$1sf$1@fe2.cs.interbusiness.it>...
> Suppose I have a dataset containing three numeric variables A, B, C.
>
> What is the sintax to compute partial correltion between variables?
>
> Thank you
>
> Gianluca
|