Reputation: 59
I used reg or robustreg procedure and get a table of parameter estimates, however, one of the coefficient is .0016, it's a very important coefficient, since I don't want to divide the value by 100 to get better data, is there any way to let sas include more decimals in the above procedure (reg/robustreg)?
Upvotes: 1
Views: 2048
Reputation: 6788
Use ODS OUTPUT
to get the results into a data set
format
your resulting output using proc print
to get the precision to display as you want it.
See the SAS knowledgebase for an example (using Parameter Estimates).
Upvotes: 2