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 (December 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 23 Dec 2002 14:06:15 -0500
Reply-To:     "Elmaache, Hamani" <Hamani.Elmaache@CCRA-ADRC.GC.CA>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Elmaache, Hamani" <Hamani.Elmaache@CCRA-ADRC.GC.CA>
Subject:      Re: ODS output For estimated parameters
Content-Type: text/plain; charset="iso-8859-1"

Hi David L. Cassell. I can not get a data set for the estimed for var1 and var2. Some thing like:

Variable Estimate tValue

var1 0.000302399 2.484263721 var2 -0.00242459 -1.58982879

I use different ways, but nothing. For the following code, I got the message: WARNING: Output 'ParameterEstimates' was not created.

ods output ParameterEstimates=param; proc mixed data= &dat ; model depend = var1 var2 /noint ; run;

Thanks for any hepl P.S. Merry Christmas everyone, all the best during the holiday season and through 2003.

Barrere.

-----Original Message----- From: David L. Cassell [mailto:Cassell.David@EPAMAIL.EPA.GOV] Sent: December 20, 2002 4:24 PM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: ODS output For estimated parameters

"Elmaache, Hamani" <Hamani.Elmaache@CCRA-ADRC.GC.CA> wrote: > I'm using PROC MIXED and I want to keep the estimated parameters in data set. > I know that's some like > ODS output parametersetim??? > Casn some body help?

The list of ODS tables is in the online docs for every proc.

If you don't have access to the online docs due to inconsiderate network or system practices, then you can always go to SAS itself and get access to the online docs through their website. A quick free registration will give you months of access. Try:

http://v8doc.sas.com/sashtml/main.htm

In the short run, I'll guess about precisely what you want:

ods output ModelInfo=YourDataSetNameHere;

or

ods output Coefficients=AnotherDataSet; /* for this you will need the E option on the MODEL statement */

Given the flexibility of the MIXED procedure, you may not want either of these, and you may have to look through the docs to find the table you *do* want.

HTH, David -- David Cassell, CSC Cassell.David@epa.gov Senior computing specialist mathematical statistician


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