Hi,
I was wondering how increasing the number of decimal in the outputs of PROC GENMOD?
With this very simple model:
proc genmod data=SHARE.shareHI ;
class id;
model diff_hi=age_num age_num *age_num / dist=n ;
repeated subject=id / type=exch; /
weight pond;
output out=work.predicted p=PredictedValue;
run;
I have this output:
0.0274 |
0.0230 |
-0.0176 |
0.0724 |
1.19 |
0.2324 |
-0.0010 |
0.0007 |
-0.0024 |
0.0004 |
-1.39 |
0.1653 |
0.0000 |
0.0000 |
0.0000 |
0.0000 |
2.08 |
0.0372 |
The parameter for age_num*age_num is 0.0000, but significant (but I have no idea with this outputs what is the parameter).
I guess I could just multply the variable age_num by 10000, but I would prefer not touching it.