I have a column for AIS (abbreviation injury score) per patient line of data. Each patient has multiple AISs and the last two digits have spaces between them. I'd like to pull the last two decimals into their own variable columns:
data have:
studyid AIS
1 541626 4 4
1 544224 3 4
2 544222 2 4
2 450203 3 3
data want:
study id Injury severity Injury region
1 4 4
1 3 4
2 2 4
2 3 3
This perhaps?
data want; set have; severity= scan(AIS,2); region= scan(AIS,3); /* and maybe to have the other value stripped of the last two*/ ais = scan(ais,1); run;
You have a character value, other wise there could not be spaces embedded. So SCAN will pull pieces separated by spaces (and other delimiting characters as needed).
This perhaps?
data want; set have; severity= scan(AIS,2); region= scan(AIS,3); /* and maybe to have the other value stripped of the last two*/ ais = scan(ais,1); run;
You have a character value, other wise there could not be spaces embedded. So SCAN will pull pieces separated by spaces (and other delimiting characters as needed).
Use the SCAN() function with -2 and -1.
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!
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.