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

Hello there,

I need to get the list of id for all variables with missing entries and also the cross tabulations of non-missing entries for all variables excluding long list of variables to print (for instance dates or id)

 

for example:

 

proc freq data=x;

tables _all_/nopercent nocum; also, would like to exclud some long list variables la dates how do I exclude specific variables?

run;

 

example: the output would look like:

sex   N=

F      10

M      20

Missing 10

Id of missing

1,2,3,4,5,6,7,8,9,10

 

your help will be very much appreciated it

 

Thanks 

Lalohg

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SuryaKiran
Meteorite | Level 14

How do you want to include then?

 

One way is use OUTPUT in the do loop, which returns all rows and only the last. will contain the list of id's missing.

 

data want;
format id_list $50.;
do until (last.gender);
set have;
by gender;
if first.gender then count=1;
else count+1;
id_list=strip(id_list)||","||strip(put(id,3.));
output;
end;
run;
Thanks,
Suryakiran

View solution in original post

4 REPLIES 4
SuryaKiran
Meteorite | Level 14

I don't think you can get the list of missing id's in proc freq. You can try something like this:

data have;
infile datalines missover;
input id gender $;
datalines ;
1 M
2 F
3
4 M
5 
6 M
7 
8 F
;
run;
proc sort data=have;
by gender;
run;
data want(drop=id);
format id_list $50.;
do until (last.gender);
set have;
by gender;
if first.gender then count=1;
else count+1;
id_list=strip(id_list)||","||strip(put(id,3.));
end;
run;
Thanks,
Suryakiran
lalohg
Quartz | Level 8
Thanks SuryaKiran,

It worked great! but I have a data set with several variables, is there a
way to include all variables?

Thanks

Lalo
SuryaKiran
Meteorite | Level 14

How do you want to include then?

 

One way is use OUTPUT in the do loop, which returns all rows and only the last. will contain the list of id's missing.

 

data want;
format id_list $50.;
do until (last.gender);
set have;
by gender;
if first.gender then count=1;
else count+1;
id_list=strip(id_list)||","||strip(put(id,3.));
output;
end;
run;
Thanks,
Suryakiran

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 4 replies
  • 638 views
  • 0 likes
  • 2 in conversation