- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 04-18-2013 03:16 PM
(4458 views)
Hi,
Is there a maxdec option in Proc Univariate? I am comparing two variables' descriptive stats and i need precision upto 10th decimal.
Thanks in advance
--
RK
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Here is some help:
http://listserv.uga.edu/cgi-bin/wa?A2=ind0706e&L=sas-l&P=4839
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
No, but you can save a table by using ODS OUTPUT and then print the statistics that you want:
proc univariate data=sashelp.class;
var height;
ods output Moments=M;
run;
proc print data=M noobs;
format nValue1 16.10;
var Label1 nValue1;
run;