Date: Mon, 8 Mar 1999 09:09:44 -0500
Reply-To: Kattamuri.Sarma@RESPONSEINSURANCE.COM
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Kattamuri S. Sarma" <Kattamuri.Sarma@RESPONSEINSURANCE.COM>
Subject: Re: stepwise regression
Content-type: text/plain; charset=us-ascii
Here is an example: (Page 1364) SAS/STAT User's guide
Proc reg data=xxx ;
Model y = x1 x2 x3 / selection = stepwise ;
run;
There are many options.. Please see Chapter 36 in the above guide.
|