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 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.
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.