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 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 30 Dec 2002 08:46:08 -0500
Reply-To:     Carol Gosselin <clgossel@GW.FIS.NCSU.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Carol Gosselin <clgossel@GW.FIS.NCSU.EDU>
Subject:      Re: ODS output For estimated parameters
Content-Type: text/plain; charset=US-ASCII

The ODS TRACE statement placed just before your PROC MIXED step will show you which objects are being created for the combination of options you are using in your PROC MIXED. You can then select the appropriate objects to be put to datasets as described in David's email below. Be sure to turn the ODS TRACE off after using it.

Carol L. Gosselin Applications Analyst Programmer II University Planning and Analysis Box 7002, 201 Peele Hall North Carolina State University Raleigh, NC 27695-7002 Phone: 919-515-6435 Fax: 919-831-3541 Email: carol_gosselin@ncsu.edu

>>> "David L. Cassell" <Cassell.David@EPAMAIL.EPA.GOV> 12/20/02 04:23PM >>> "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