Date: Wed, 24 Oct 2001 11:04:28 -0500
Reply-To: aldi@wubios.wustl.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Aldi Kraja <aldi@WUBIOS.WUSTL.EDU>
Organization: Washington University
Subject: Re: PROC REG (outputing Durbin-Watson statisic)
Content-Type: text/plain; charset=us-ascii
Yes it is an easy task,
Here is the solution.
ods output on;
ods output DWStatistic=DW;
PROC REG DATA=sample OUTEST=result;
MODEL y=x /DW;
RUN;
data DW;
set DW;
if _n_=1; run;
ods output off;
HTH,
Aldi
Stephen Arthur wrote:
> Hi,
>
> I there a way to output the Durbin-Watson created from
> a PROC REG to an output data set for later reporting?
>
> PROC REG DATA=sample OUTEST=result;
> MODEL y=x /DW
> RUN;
>
> It sounds like an easy task?
|