BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jlajla
Obsidian | Level 7

If I'm mot mistake, merge will, by default, make the total number of observations in the final data set set as the sum of the maximum number of observations in a BY-group from either data set.

 

How do I make the total number of observations in the final data set as the sum of the MINIMUM number of observations in the BY group from either data set?

 

I have this:

ID region

1  A

1 A

2  A

2 A

3  B

3 B

4  C

 

and

ID  size

1  5

1  6

1  7

2  3

2  4

3  4

3  5

4  5

 

& I'd like:

ID region size

1 A 5

1 A 6

2 A 3

2 A 4

3 B 4

3 B 5

4 C 5

 

Thank you in advance. 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

data minimum;

in1=0;

in2=0;

merge a (in=in1) b (in=in2);

by id;

if in1 and in2;

run;

View solution in original post

5 REPLIES 5
LinusH
Tourmaline | Level 20

How do you know that the first row in the "size" data set is the right one?

If you know, just use

if first.ID;

Assumng that there are no duplicates of ID in the "region" data set.

Data never sleeps
jlajla
Obsidian | Level 7

Thank you.  I should elaborate.  My first data set is actually similar to this:

 

1 A

1 A

2 A

2 A

3 B

3 B

4 C

4 C

 

And I'd like to match by the number of observations in this dataset. However, if I use first.id, then it only matches by the very first observation.

LinusH
Tourmaline | Level 20

Perhaps you should share some real data, because this logic makes little sense.

Merging data without proper keys (unique by variables) leads to unpredictable results, and inconsistent data.

Data never sleeps
Astounding
PROC Star

data minimum;

in1=0;

in2=0;

merge a (in=in1) b (in=in2);

by id;

if in1 and in2;

run;

jlajla
Obsidian | Level 7
Perfect. If modified to "if in1" this gives the exact results I needed. Thank you!

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1134 views
  • 0 likes
  • 3 in conversation