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;

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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 863 views
  • 2 likes
  • 3 in conversation