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
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;
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;
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!
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.