Date: Fri, 19 Dec 2003 14:39:25 -0500
Reply-To: "Elmaache, Hamani" <Hamani.Elmaache@CCRA-ADRC.GC.CA>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Elmaache, Hamani" <Hamani.Elmaache@CCRA-ADRC.GC.CA>
Subject: P-value outpted in PRC Model
Content-Type: text/plain; charset="iso-8859-1"
Hi sas friends.
I'm using proc model. I want to store the p-value's estimtes.
Can someone tell how to do?
I don't indication in SAS HELP.
Thanks a lot.
proc model data=one MAXITER=1000 OUTPARMS=aa;
endogenous &depvar ;
exogenous &INDVAR ;
parms ¶ ;
restrict RA+RC+RD+RE +RF +RG+RH=1;
restrict RA>=0, RC>=0, RD>=0, RE>=0, RF>=0,
RG >=0, RH>=0;
&depvar= RA*RuleA+ RC*RuleC+RD*RuleD+ RE*RuleE+ RF*RuleF
+ RG*RuleG+RH*RuleH;
fit &depvar
start=( RA=0.01 RC =0.01 RD=0.01 RE=0.01 RF=0.01 RG =0.01 RH =0.01 )/
METHOD=GAUSS white pagan=( ¶ )
out=resid1 outresid OUTEST=OUTEST(drop=_name_ _type_ _status_
_Nused_);
weight weit;
run;
quit;
|