BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
pmpradhan
Quartz | Level 8

My data is like:

IDclass
ACDC1
ABCD2
ADCB.
ACBD.
ACCD2
ABBB2
AAAB1
ACDA2

 

Proc freq give me output like:

ClassFrequencyPercentCumulative FrequencyCumulative Percent
1233.33%233.33%
2466.67%6100.00%
Frequency missing=2  

 

I need output(percent based on entire N of the dataset):

ClassFrequencyPercent
1225.00%
2450.00%
.225.00%
Total 100.00%

 

Please help-thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ
proc freq data=Have;
tables class / missing;
run;

View solution in original post

4 REPLIES 4
Astounding
PROC Star

You'll need to add the MISSING option to your program:

 

tables class / missing;

pmpradhan
Quartz | Level 8

Thank you very much!

Rick_SAS
SAS Super FREQ
proc freq data=Have;
tables class / missing;
run;
pmpradhan
Quartz | Level 8
Thank you very much!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1824 views
  • 2 likes
  • 3 in conversation