What is the purpose of resetting temporary variables many1 and many2 in following code.
data pairs oddballs; many1=0; many2=0; merge many1 ( in = many1 ) many2 ( in = many2 ); by partkey; if many1 and many2 then output pairs; else output oddballs; run;
This type of code is used for many-to-many matches. For example, let's say:
That's what this program accomplishes ... matching based on whichever data set has fewer observations, and putting those matched observations into PAIRS. Discarding any that are left over without a match, putting them into ODDBALLS.
No practical purpose served that I can tell. If you found this code somewhere the assignments might be an artifact left in from previous code tested.
Or someone misunderstanding how temporary variables work in SAS.
This type of code is used for many-to-many matches. For example, let's say:
That's what this program accomplishes ... matching based on whichever data set has fewer observations, and putting those matched observations into PAIRS. Discarding any that are left over without a match, putting them into ODDBALLS.
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.