SAS中文论坛

标题: 请教各位大侠一个问题 谢谢 [打印本页]

作者: shiyiming    时间: 2004-10-5 20:15
标题: 请教各位大侠一个问题 谢谢
我有一些数据,因分析的关系,所以想插入一些有特殊要求的ROW,如下
原来是这样的
id seq x
1 1 5
1 2 6
2 1 7
2 2 4
3 1 6
3 2 4
变幻后要求变成这样的(插入的行中,ID值不变,SEQ增一,X为前两个值的和)
id seq x
1 1 5
1 2 6
[color=red:131f6]1 3 11 [/color:131f6]
2 1 7
2 2 4
[color=red:131f6]2 3 11 [/color:131f6]
3 1 6
3 2 4
[color=red:131f6]3 3 10 [/color:131f6]
希望高手不吝赐教,先行谢过
作者: shiyiming    时间: 2004-10-5 22:13
标题: try it.
data temp;
input id seq x;
datalines;
1 1 5
1 2 6
2 1 7
2 2 4
3 1 6
3 2 4
;
run;
data temp;
  set temp;
  by id;
  retain x1;
  if first.id then do;
    x1=0;
  end;
  x1=x1+x;
  output;
  if last.id then do;
    seq=seq+1;
        x=x1;
        output;
  end;
  drop x1;
run;

希望对你有所帮助。




欢迎光临 SAS中文论坛 (http://mysas.net/forum/) Powered by Discuz! X3.2