BookmarkSubscribeRSS Feed
srav2
Fluorite | Level 6

Hi,

I'm having a dataset shown as below and all the variables are characters. I need a output in which TERM variable is having the values of both TERM and WORD. PLease help

 

Thanks in advance.

 

INPUT:

 

TERM             WORD                   

Cold                chills                       

Fever              HIgh temperature     

Headache       dizziness                   

                                                        

                                                     

OUTPUT:

                                                        

TERM

 Cold

 chills

  fever

  high temperature

  Headache

 dizziness

5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

There are numerous ways to do this and it is fairly easily done, but I have to ask why? This does not make sense to me? 🙂

 

data have;
length TERM $50 WORD $50;
input TERM$ WORD$;
infile datalines dlm=',';
datalines; 
Cold,chills                       
Fever,HIgh temperature     
Headache,dizziness
run; 

data want(keep=TERM);
	set have;
	array vars{*} TERM WORD;
	do i=1 to dim(vars);
		TERM=vars[i];
		output;
	end;
run;
srav2
Fluorite | Level 6

its a question asked in interview.

I tried different ways but couldnt get the result.

 

will try this.

 

srav2
Fluorite | Level 6

thanks a lot it worked..

srav2
Fluorite | Level 6

Could you please explain how this worked out.

Shmuel
Garnet | Level 18

If you are not familiar with arrays, next code is same as @PeterClemmensen's code (but his code is flexible to deal with more than 2 variables):

data want(keep=TERM);
	set have;
	output;   /* original TERM only */
        term = word;
       output;   /* = WORD value */ 
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 5 replies
  • 11306 views
  • 4 likes
  • 3 in conversation