I have a series of patients who have certain characteristics( variables)
I need to pick out the patients that meet the criteria by using their patient ID (300 unique identifiers) and separate them into their own dataset so they are alike only by that one characteristic.
i=I want it to be like this:
Data want;
SET have;
where patientnum= 3 6 5 4 8 7 9 0 ;
run;
but this doesn't work. and using OR and AND statements cancels the previous ID number
Data want;
SET have;
where patientnum in (3 6 5 4 8 7 9 0) ;
run;
/*or*/
where patientnum in (3, 6, 5, 4, 8, 7, 9, 0) ;
Data want;
SET have;
where patientnum in (3 6 5 4 8 7 9 0) ;
run;
/*or*/
where patientnum in (3, 6, 5, 4, 8, 7, 9, 0) ;
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!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.