BookmarkSubscribeRSS Feed
cons
Calcite | Level 5

Hi everybody, 

 

I try to combine two data sets. 

Data Set A  and DATA SET B with the variables state and object_id. 

For example 

Set A 

state object_id

1 a

1 b

2 a 

 

SET B

state object_od

1 a 

1 b 

2 a 

2 b 

3 a

 

I want the new Data Set like 

SET 

state object_id

1 a

1 a

1 b

1 b 

2 a

2 a 

2 b

 

Which statement would I need to get the new data set 

 

Regards, 

Cons. 

2 REPLIES 2
ballardw
Super User

The easiest is set:

 

data want;

   set dataseta datasetb;

run;

(assuming object_od in set b was supposed to be object_id)

will combine then

 

proc sort data=want;

   by id object_id;

run;

Ksharp
Super User

data A ;
input state object_id $;
cards;
1 a
1 b
2 a 
;
run;
data B;
input state object_id $;
cards;
1 a 
1 b 
2 a 
2 b 
3 a
;
run;

data want;
 set a(in=ina) b;
 by state;
 retain in_a;
 if first.state then in_a=ina;
 if in_a;
 drop in_a;
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 2 replies
  • 958 views
  • 1 like
  • 3 in conversation