- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 09-18-2021 12:32 PM
(903 views)
Is there a way to modify this code for the frequency table so that the percent is displayed as proportions?
proc freq DATA=x;
tables y;
run;
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
????
The Percent column IS giving the proportions.
Submit this and tell us what you would like to see instead:
PROC FREQ data=sashelp.class;
tables sex;
run;
Koen
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I agree! I want to change the percents to decimal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You mean, like this??
PROC FREQ data=sashelp.class noprint;
tables sex / out=work.count;
run;
data work.count;
set work.count;
proportion=percent/100;
run;
proc print data=work.count;
run;
/* end of program */
Koen
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Yes! Thank you so much, Koen.