BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SAS_inquisitive
Lapis Lazuli | Level 10

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;
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

This type of code is used for many-to-many matches.  For example, let's say:

 

  • MANY1 contains 3 observations per PARTKEY
  • MANY2 contains 5 observations per PARTKEY
  • The objective is to output 3 observations per PARTKEY, matching the first from MANY1 with the first from MANY2, the second from MANY1 with the second from MANY2, etc.  Discard any that are left over from the data set containing more observations.

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.

View solution in original post

2 REPLIES 2
ballardw
Super User

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.

Astounding
PROC Star

This type of code is used for many-to-many matches.  For example, let's say:

 

  • MANY1 contains 3 observations per PARTKEY
  • MANY2 contains 5 observations per PARTKEY
  • The objective is to output 3 observations per PARTKEY, matching the first from MANY1 with the first from MANY2, the second from MANY1 with the second from MANY2, etc.  Discard any that are left over from the data set containing more observations.

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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1133 views
  • 2 likes
  • 3 in conversation