| Date: | Mon, 24 Jan 2000 08:38:43 -0500 |
| Reply-To: | Paige Miller <paige.miller@KODAK.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Paige Miller <paige.miller@KODAK.COM> |
| Organization: | Eastman Kodak Company |
| Subject: | Re: polynomial regression |
| Content-Type: | text/plain; charset=us-ascii |
Laurie Abell wrote:
>
> Does anyone know which SAS/STAT proc will do polynomial regression? I
> haven't done stats for a few years and someone here is looking for
> directions!
PROC GLM;
MODEL Y= X X*X X*X*X ... ;
--
Paige Miller
Eastman Kodak Company
paige.miller@kodak.com
"It's nothing until I call it!" -- Bill Klem, NL Umpire
|