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) ;
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!
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.