SAS做循环+滞后功能?

时间:2015-02-10 03:33:45

标签: sql loops sas lag

这是我的第一篇文章,如果我不够清楚,请告诉我。这是我正在尝试做的事情 - 这是我的数据集。我的方法是使用延迟的do循环,但结果是垃圾。

data a;
input @1 obs @4 mindate mmddyy10. @15 maxdate mmddyy10.;
format mindate maxdate date9.;
datalines;
1   01/02/2013 01/05/2013
2   01/02/2013 01/05/2013
3   01/02/2013 01/05/2013
4   01/03/2013 01/06/2013
5   02/02/2013 02/08/2013
6   02/02/2013 02/08/2013
7   02/02/2013 02/08/2013
8   03/10/2013 03/11/2013
9   04/02/2013 04/22/2013
10  04/10/2013 04/22/2013
11  05/04/2013 05/07/2013
12  06/10/2013 06/20/2013
;
run;

现在,我正在尝试根据以下逻辑生成一个新列 - “替换”:

  1. 如果记录的注意力在其滞后的最大值之前发生,则它不能替代它。如果它不能替代,则向前跳过(所以2,3,4不能替换1,但是5可以)。
  2. 否则......如果心态不到30天,则替换= Y.如果不是,则替换= N.一旦记录替换另一个记录(因此,在这种情况下,5确实替换1,因为02/02/2013是< 30而不是01/05/2013,它不能复制作为另一条记录的替代。但是如果它是上面一条记录的N,那么对于其他记录它仍然可以是Y.所以,6现在被评估为2由于这两个组合都是“Y”,因此现在评估8和4,但因为它相对于4的maxdate而言是> 30,所以它是N.但是,它然后被评估为
  3. 依旧......
  4. 我应该在一个100记录数据集中,这意味着第100条记录可以在技术上取代第1条记录,所以我一直在循环中尝试滞后。任何提示/帮助非常感谢!预期产出:

                          obs      mindate      maxdate    Replacement
    
                            1    02JAN2013    05JAN2013
                            2    02JAN2013    05JAN2013
                            3    02JAN2013    05JAN2013
                            4    03JAN2013    06JAN2013
                            5    02FEB2013    08FEB2013         Y
                            6    02FEB2013    08FEB2013         Y
                            7    02FEB2013    08FEB2013         Y
                            8    10MAR2013    11MAR2013         Y
                            9    02APR2013    22APR2013         Y
                           10    10APR2013    22APR2013         N
                           11    04MAY2013    07MAY2013         Y
                           12    10JUN2013    20JUN2013         Y
    

2 个答案:

答案 0 :(得分:1)

这是一个使用SQL和哈希表的解决方案。这不是最佳的,但它是第一种出现在脑海中的方法。

/* Join the input with its self */
proc sql;
    create table b as
    select 
        a1.obs, 
        a2.obs as obs2
    from a as a1
    inner join a as a2
        /* Set the replacement criteria */
        on a1.maxdate < a2.mindate <= a1.maxdate + 30
    order by a2.obs, a1.obs;
quit;
/* Create a mapping for replacements */
data c;
    set b;
    /* Create two empty hash tables so we can look up the used observations */
    if _N_ = 1 then do;
        declare hash h();
        h.definekey("obs");
        h.definedone(); 
        declare hash h2();
        h2.definekey("obs2");
        h2.definedone();
    end;
    /* Check if we've already used this observation as a replacement */
    if h2.find() then do;
        /* Check if we've already replaced his observation  */
        if h.find() then do;
            /* Add the observations to the hash table and output */
            h2.add();
            h.add();
            output;
        end;
    end;
run;
/* Combine the replacement map with the original data */
proc sql;
    select 
        a.*, 
        ifc(c.obs, "Y", "N") as Replace, 
        c.obs as Replaces
    from a
    left join c
        on a.obs = c.obs2
    order by a.obs;
quit;

有几种方法可以简化:

  • 日期可以通过第一个proc sql
  • 进行
  • 可以合并if语句
  • 最终的连接可以用数据步骤中的一些额外逻辑替换

答案 1 :(得分:1)

如果提问者误认为替换= Y = obs = 12,我认为这是正确的。

/*Get number of obs so we can build a temporary array to hold the dataset*/
data _null_;
    set have nobs= nobs;
    call symput("nobs",nobs);
    stop;
run;

data want;
    /*Load the dataset into a temporary array*/
    array dates[2,&NOBS] _temporary_;
    if _n_ = 1 then do _n_ = 1 by 1 until(eof);
        set have end = eof;
        dates[1,_n_] = maxdate;
        dates[2,_n_] = 0;
    end;

    set have;

    length replacement $1;

    replacement = 'N';
    do i = 1 to _n_ - 1 until(replacement = 'Y');
        if dates[2,i] = 0 and 0 <= mindate - dates[1,i] <= 30 then do;
            replacement = 'Y';
            dates[2,i] = _n_;
            replaces = i;
        end;
    end;
    drop i; 
run;

如果您愿意,可以使用哈希对象+哈希迭代器而不是临时数组。我还添加了一个额外的变量replaces,以显示每行替换的前一行。