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!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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