Date: Mon, 22 Dec 2008 08:40:42 -0600
Reply-To: Robin R High <rhigh@UNMC.EDU>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Robin R High <rhigh@UNMC.EDU>
Subject: Re: PROC GLM parameter estimates
In-Reply-To: <200812220835.mBLBlDqM006993@malibu.cc.uga.edu>
Content-Type: text/plain; charset="US-ASCII"
ODS is the way to proceed:
ODS OUTPUT parameterestimates=prms;
proc glm data=indat;
class a;
model y= a x / solution;
run; quit;
PROC PRINT DATA=prms; run;
< you can enter the same ODS command before PROC REG as well >
Robin High
UNMC
Talbot Michael Katz <topkatz@MSN.COM>
Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
12/22/2008 02:37 AM
Please respond to
Talbot Michael Katz <topkatz@MSN.COM>
To
SAS-L@LISTSERV.UGA.EDU
cc
Subject
PROC GLM parameter estimates
Hi
Here's an embarrassingly simple question. If I want parameter estimates
from PROC REG, I can save them in an OUTEST data set. How do I save
parameter estimates from PROC GLM? Sorry, I couldn't find it from the
documentation. Thanks!
-- TMK --
"The Macro Klutz"