I have two sas datasets which looks as below
1.
id A B C D E
2.
id B A C E D
How can I combine these two datasets, here my variables are not in same as you can see above.
I would like to combine these two into one datset.
As long as the columns have the same names, their order in the dataset is irrelevant.
Irrespective of position, when the PDV executes, it creates in memory one variable for each one found in the contributing tables, if the same appears twice then you will get errors. There are several methods to get what you want, but they all require some sort of renaming or re-populating to variables with a different name. So say A is your linking variable you could do:
data want; set have1 have2 (rename=(b=b1 c=c1 d=d1 e=e1)); by a; run;
What is my variable name is like ABC123?
You can rename to any valid SAS variable name
- maximum of 32 characters
- must start with a letter or underline
- can contain letters, underlines and numbers
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.