Hi Harish
For this you have to use ods output statement. In the following
example dataset ONE is generated which contians parameter estimaes
along with their p values.
data abc;
input y x z;
cards;
1 25 69
2 30 89
3 40 91
4 35 67
5 32 98
6 41 62
7 19 101
;
run;
ods output parameterestimates=one;
proc reg data=abc outest=abc1;
model y=x z;
run;
quit;
Hope this helps.
Thanks and Regards
MADAN GOPAL KUNDU
--- In
Statisticians_group@..., Harish Mohan
<zeusherm@...> wrote:
>
> Hi All,
> I need help with a SAS question.
> I run a proc reg to run a linear regression model and use the
outest= option to output the modeling coefficients to a sas dataset.
However, I would also like to somehow output the p-values of the
various variables in the model to the output dataset, so that I know
which variables are significant.
> Is there any way to do this?
> Thanks for your help,
> Regards
> Harish
>
>
>
> __________________________________________________________
> Yahoo! India Answers: Share what you know. Learn something new
>
http://in.answers.yahoo.com/
>