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 (April 1996, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 15 Apr 1996 12:12:10 -0500
Reply-To:   "Scot A. Richardson" <cma-mkt@INTERACCESS.COM>
Sender:   "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:   "Scot A. Richardson" <cma-mkt@INTERACCESS.COM>
Organization:   Conway/Milliken & Associates
Subject:   Re: Variance Inflation Factors

ko02@Lehigh.EDU wrote: > > Hello: > > I would like to know if PROC GLM or PROC REG > have options for computing VIF. > > Any help is greatly appreciated. > > Sincerely, > > Kouros Owzar.

You could just try:

proc reg data=yourdata.set; model y=x1-x3 /tol; run;

Where tol is the reciprocal of vif or... just go at it directly (grin--sorry about that tolerance thing...just couldn't help myself)

proc reg data=yourdata.set; model y=x1-x3 /vif; run;

Take a peek at SAS/Stat Vol II page 1368-69! Good luck

Scot A. Richardson Project Mgr Statistical Services UNIX System Admin Conway/Milliken & Associates 875 N. Michigan Ave. John Hancock Center Suite 2511 Chicago, IL 60611


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