BookmarkSubscribeRSS Feed
hira
Calcite | Level 5

Hi,

 

I am trying to get some missing data for the whole class by proc freq.

It can easily be achived by proc summary as below. for example if pregnant='Y' is complety missing , it will still produce the desire result.

 

proc summary data= test completetypes nway ;
  by allgrp nbyvar;
  class pregnent / preloadfmt;
  output out=test1(drop=_type_) / autoname;
  format pregnent  ynf. ;
run;

 

I would like to know the percent as well which is possible in proc freq as below but it does not give me the 0 count for pregnent='Y' even i tried sparse option too.

 

proc freq data= test1 noprint;
 by allgrp nbyvar;
 table pregnent/  out=test2;
 format &var1. ynf. ;
run;

 

 

Is there any way i can achive percent in proc summary or missing count in proc freq?

 

Thanks,

 

 

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

It would be a lot easier to understand your need if you provided a data sample and an expected result.

I presume you saw this? What's missing there? 

 

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 1950 views
  • 0 likes
  • 2 in conversation