BookmarkSubscribeRSS Feed
398740
Calcite | Level 5

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
sbxkoenk
SAS Super FREQ

????

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

398740
Calcite | Level 5

I agree! I want to change the percents to decimal.

sbxkoenk
SAS Super FREQ

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

398740
Calcite | Level 5

Yes! Thank you so much, Koen.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 4 replies
  • 1210 views
  • 0 likes
  • 2 in conversation