Indiana University
University Information Technology Services
  
What are archived documents?
Login>>
Login

Login is for authorized groups (e.g., UITS, OVPIT, and TCC) that need access to specialized Knowledge Base documents. Otherwise, simply use the Knowledge Base without logging in.

Close

In SAS, how do I merge two data sets?

To merge two or more data sets in SAS, you must first sort both data sets by a shared variable upon which the merging will be based. Then, use the MERGE statement in your DATA statement.

If you merge data sets without sorting, called one-to-one merging, the data of the merged file overwrites the primary data set without considering whether or not two observations are the same.

For example, suppose you have two data sets (one and two below), with a common variable, id. The SAS codes below show how they can be sorted and merged:

DATA one; INPUT id v1 v2; DATALINES; 1 10 100 2 15 150 3 20 200 ; PROC SORT Data=one; BY id; RUN; DATA two; INPUT id v3 v4; DATALINES; 1 1000 10000 2 1500 15000 3 2000 20000 4 800 30000 ; PROC SORT Data=two; BY id; RUN; DATA three; MERGE one two; BY id; PROC PRINT DATA=three; RUN;

In the example above, data set three is created by merging data sets one and two. It will have five variables (id, and v1 to v4) and four cases. Where id=4, variables v1 and v2 will be missing.

For more information about statistical and mathematical software, email the UITS Stat/Math Center, visit the center's web page, or phone 812-855-4724 (IUB) or 317-278-4740 (IUPUI). The center is located in Bloomington at 410 N. Park Avenue, and is open for consultation by appointment Monday-Friday 9am-5pm.

This is document afin in domain all.
Last modified on January 02, 2009.

Comments/Questions/Corrections

Use this form to offer suggestions, corrections, and additions to the Knowledge Base. We welcome your input!

If you are affiliated with Indiana University and would like assistance with a specific computing problem, please use the Ask a Consultant form, or contact your campus Support Center.

Contact Information

Note: We will reply to your comment at this address. If your message concerns a problem receiving email, please enter an alternate email address.