Hi,
I need to delete observations that have ns_n ='.' or 0 but leave the rows that have a certain value of drug= 'abc' (which intrinsically has ns_n equal to '.' and 0; they have other values - uns_n and sns_n instead).
When I use this code below all rows containing ns_n ='.' or 0 are deleted including the data with drug 'abc' and I need to keep them:
Data DB_test;
set AB_2020;
if ns_n='.' then delete;
if ns_n =0 then delete;
run;
Thank you.
First of all, one of your statements is wrong and works only because SAS does an automatic type conversion for you. Relying on this is considered bad practice.
Assuming your variable is numeric, do this:
if drug ne 'abc' and ns_n in (0,.) then delete;
First of all, one of your statements is wrong and works only because SAS does an automatic type conversion for you. Relying on this is considered bad practice.
Assuming your variable is numeric, do this:
if drug ne 'abc' and ns_n in (0,.) then delete;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.