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 |
proc transpose data=have out=want(drop=_:);
by customer;
id phonetype;
var phone;
run;
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;
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.