| 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 |
|
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
>
>
|