BookmarkSubscribeRSS Feed
chennupriya
Quartz | Level 8

Hi ,

I have a dataset like in data a an dnow i want the dataset to look like in data b  

 

can anyone pls help

 

data a      
customer phone phonetype  
lori 12356 cellphone  
lori 45623 homephone  
lori 23687 workphone  
       
datab      
customer cellphone homephone workphone
lori 12356 45623 23687
2 REPLIES 2
slchen
Lapis Lazuli | Level 10
proc transpose data=have out=want(drop=_:);
by customer;
id phonetype;
var phone;
run;
Steelers_In_DC
Barite | Level 11

here you go:

 

data have;
infile cards dsd;
input customer$     phone$     phonetype $10.;
cards;
lori,12356,cellphone
lori,45623,homephone
lori,23687,workphone
;

proc transpose data=have out=want (drop=_name_);by customer;id phonetype;var phone;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 778 views
  • 0 likes
  • 3 in conversation