|
Hi all,
Using weights in proc freq, give me the collums sometimes with big numbers
in frequency like:
Cumulative Cumulative
p9 Frequency Percent Frequency Percent
ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ
. 183.1225 61.04 183.1225 61.04
1 24.50681 8.17 207.6293 69.21
2 12.52975 4.18 220.1591 73.39
3 23.45213 7.82 243.6112 81.20
4 21.93739 7.31 265.5486 88.52
5 5.363332 1.79 270.9119 90.30
6 10.25172 3.42 281.1636 93.72
7 18.83635 6.28 300 100.00
I want collum frequency and cumulative frequency has only 2 decimals. Whats
the option in sas?
My program (I know don’t matter, but is simple like this):
data tall;
set all;
proc freq;
table p9 / missing;
weight count;
run;
thanks in advance,
Adriano
|