proc sql;
create table want as
select * from have
where prxmatch("/1|Y|yes/i",Results_In_Death)
union
select * from have
where prxmatch("/fatal/i",OutCome)
union
select * from have
where prxmatch("/death|dead|fatal|(subject|patient|participant).*(expire)/i",Term_Verbatim)
union
select * from have
where prxmatch("/na/i",Death_Date)=0;
quit;
the idea is to subset the dataset have that meet the where condition.but the results are not expected. for example results_in_death is showing values like 0,na etc.
also outcome is showing values like disease progression etc
how to subset the data just based on where conditions?
Don't you mean
proc sql;
create table want as
select * from have
where prxmatch("/1|Y|yes/i",Results_In_Death)
and prxmatch("/fatal/i",OutCome)
and prxmatch("/death|dead|fatal|(subject|patient|participant).*(expire)/i",Term_Verbatim)
and prxmatch("/na/i",Death_Date)=0;
quit;
Note that the parentheses in the third test seem oddly placed.
it is OR not AND
If you use OR then you will get dates not equal to NA or results_in_death not equal to yes. Why are you surprised?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.