LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2001, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page