My data is like:
ID | class |
ACDC | 1 |
ABCD | 2 |
ADCB | . |
ACBD | . |
ACCD | 2 |
ABBB | 2 |
AAAB | 1 |
ACDA | 2 |
Proc freq give me output like:
Class | Frequency | Percent | Cumulative Frequency | Cumulative Percent |
1 | 2 | 33.33% | 2 | 33.33% |
2 | 4 | 66.67% | 6 | 100.00% |
Frequency missing=2 |
I need output(percent based on entire N of the dataset):
Class | Frequency | Percent |
1 | 2 | 25.00% |
2 | 4 | 50.00% |
. | 2 | 25.00% |
Total | 100.00% |
Please help-thanks in advance!
proc freq data=Have;
tables class / missing;
run;
You'll need to add the MISSING option to your program:
tables class / missing;
Thank you very much!
proc freq data=Have;
tables class / missing;
run;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.