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 (October 2004, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sat, 30 Oct 2004 22:56:29 -0400
Reply-To:   "DePuy, Venita" <depuy001@DCRI.DUKE.EDU>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "DePuy, Venita" <depuy001@DCRI.DUKE.EDU>
Subject:   Re: Proc Logistic: Printing ParameterEstimates directly to a data set
Comments:   To: K Fernandes <kafernan@UWATERLOO.CA>
Content-Type:   text/plain; charset="iso-8859-1"

Hi Kim - yes and no.

No, technically you need to print the Logistic output, otherwise the ODS statement won't work. I've tried :) However, you don't necessarily need to *see* that output.

ie ODS listing close; proc logistic; . . . . ; run; ODS listing;

will eliminate that, at least from a 'viewing the output window' perspective. HTH Venita

-----Original Message----- From: K Fernandes To: SAS-L@LISTSERV.UGA.EDU Sent: 30/10/2004 17:40 Subject: Proc Logistic: Printing ParameterEstimates directly to a dataset

Hello,

Using proc logistic, I would like to print the output of 'ParameterEstimates' directly to a dataset. Right now, using the code below, the results of proc logistic are being printed:

proc logistic data = FinSum; model y/m = x ; ods output ParameterEstimates = BetaEst; run;

Is there a way that I can put ParameterEstimates into dataset BetaEst without printing any output?

Thank you very much for your help, Kim


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