为了账号安全,请及时绑定邮箱和手机立即绑定

SAS Merge

标签:
MySQL 大数据

SAS Day 22: Merge

Background:

Sometimes we need to obtain information from different datasets, how do we combine two or more datasets in SAS?

Most cases, we use the “Merge” statements, however,  depends on the data structures, we need to use SQL if it is many to many mapping.
P.S. regardless of Merge or SQL, we need to have at least a specific common variable.

Problem:

We want to combine the information from ADSL(Patients General Infomation) and ADTTE (Time to Event Dataset).

[caption id=“attachment_1476” align=“alignnone” width=“500”]image

ulleo / Pixabay[/caption]

Solution:

First we sort the ADSL and ADTTE dataset by the same common variable “USUBJID”, then we merge these datasets by selecting the records in both of the datasets.

SAS Code:

data pop;
  set adsl ;
  by usubjid; /*Always remember to Sort before Merge;*/
run; 

data adtte;
   set adam.adtte;
   by usubjid adt;
run;

/*Merge the records in both ADTTE and POP*/
data survival;
  merge adtte(in=b) pop(in=a);
  by usubjid;
  if a and b;
  run;

Output:

image

Basic Syntax:

There are 3 steps for Merge Statement to work properly.

  1. Sort the datasets need to be MERGE.
  2. Make sure the common "BY" variable have the same name and length
  3. Merge the datasets with desired selections using the BY variable.

I have summarized the following code for most used Two Data Set Merge Cases:

data survival;
  merge adtte(in=b) pop(in=a);
  by usubjid;
  if a and b;
* if a; /* Select the records in a*/
* if a and not b; /* Select the records in a but not in b*/
  run;

Merge more than two datasets:

data a b c1;
  merge adtte(in=b) pop(in=a) adresp(in=c);
  by subjid;
  if a and b then output a;
  if a and c then output b;
  if a and not c then output c1;
  run;

It is important to know that Merge works for one-to-one or one to many mapping.  Next time we will go over SQL for many to many mapping.

Happy Studying! 😇

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消