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 (August 2000, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 29 Aug 2000 16:04:21 EDT
Reply-To:     James Yang <jamesy99@HOTMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         James Yang <jamesy99@HOTMAIL.COM>
Subject:      ODS Output help needed!!!
Content-Type: text/plain; format=flowed

I encounter some problem when I set up the ODS statement. What I want to do is to output the standard error of the LIFEREG to a dataset. And following is what I coded:

ODS TRACE OUTPUT; ODS LISTING; ODS PARAMETERESTIMATES = SE;

PROC LIFEREG DATA = MYDATA; CLASS A B; WHERE YEAR > 0; MODEL (LOW, UPPER)= A; MODEL (LOW, UPPER)= B; RUN;

PROC LIFEREG DATA = MYDATA; CLASS C D; WHERE 0 < YEAR < 5; MODEL (LOW, UPPER)= C; MODEL (LOW, UPPER)= D; RUN;

PROC LIFEREG DATA = MYDATA; CLASS E F; WHERE 0 < YEAR < 8; MODEL (LOW, UPPER)= E; MODEL (LOW, UPPER)= F; RUN;

PROC PRINT DATA = SE; RUN;

The problem is that just the first two models's information in the first procedure were written to the dataset SE. The rest 4 models' information were excluded? Did any expert face the same problem? If you can kindly provide your advice, it would be highly appreciated. Thanks in advance.

Regards, James

_________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at http://profiles.msn.com.


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