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