Date: Tue, 26 Jan 1999 09:37:13 -0900
Reply-To: Bob Sutherland <rsutherl@FISHGAME.STATE.AK.US>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Bob Sutherland <rsutherl@FISHGAME.STATE.AK.US>
Subject: Re: point estimators
Content-Type: text/plain; charset=us-ascii
Jeff:
PROC REG DATA=yourdataset;
MODEL DEPVAR = INDVARS / P CLM;
RUN;
The P gives you the predicted values, the CLM gives you the 95% CI for those
values. SAS belts out parameter estimates and 95% CI's "automatically".
You might want to invest in the book "SAS System for Regression 2nd Ed" by
Freund and Littell. You can find it on the SAS website www.sas.com
Good luck,
Bob Sutherland
rdsuther@fishgame.state.ak.us
"Jeff D. Hamann" wrote:
> I need to obtain point estimators w/ 95% CI's of the mean response variable,
> as well as other point estimates ( with ci's ).
>
> Is it possible to do it from proc reg, and if not then how?
>
> hamannj@ucs.orst.edu