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;
????
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
I agree! I want to change the percents to decimal.
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 */
Yes! Thank you so much, Koen.
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.