LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (December 2008, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: Talbot Michael Katz <topkatz@MSN.COM>
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"


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