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 (June 2003, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 10 Jun 2003 09:29:23 -0400
Reply-To:   "Delaney, Kevin P." <khd8@CDC.GOV>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Delaney, Kevin P." <khd8@CDC.GOV>
Subject:   Re: ODS Output Objects
Comments:   cc: 'actionjzl@YAHOO.COM'

Sorry, Posted yesterday without a subject (again)....

> -----Original Message----- > From: Delaney, Kevin P. > Sent: Monday, June 09, 2003 4:03 PM > To: 'actionjzl@YAHOO.COM' > Cc: SAS-L@LISTSERV.UGA.EDU > Subject: > > The RMSE is actually in the fit statistics table: > > ODS OUTPUT fitstatistics=RMSE_IN_HERE; > proc reg data=simu; > by typ1; > model u=v; > run; > ODS OUTPUT close; > > Data _NULL_; > Set RMSE_IN_HERE; > By typ1; > If first.typ1 then do; > *Stupid colnames/structure in ODS TABLES!; > Put label1 "(TYP1="Typ1")=" nvalue1; > End; > Run; > > > > Try leaving the listing on and use > > ODS TRACE ON / LISTING; > > Which will put the name of the table etc above each output object, then > determine which table has Root MSE (seems it would be the ANOVA table, but > I may be wrong). > > > John Gerstle > CDC Information Technological Support Contract (CITS) Biostatistician > > > >> -----Original Message----- > >> From: Joe Eplion [mailto:actionjzl@YAHOO.COM > <mailto:actionjzl@YAHOO.COM> ] > >> Sent: Monday, June 09, 2003 11:14 AM > >> To: SAS-L@LISTSERV.UGA.EDU > >> Subject: ODS Output Objects > >> > >> I am trying get Root MSE from PROC REG. However, my ODS TRACE ON > >> indicated that there was no corresponding ODS object, even though the > >> output window showed the output section. What am I missing? > >> > >> example: > >> > >> ods listing close; > >> ods trace on; > >> proc reg data=simu; > >> by typ1; > >> model u=v; > >> run; > >> > >> ods trace off; > >> ods listing; > >> > >> Thanks > >> > >> Action > >


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