2

当行上的值类似于 1-5 时,我需要帮助将一行拆分为多行。原因是我需要数 1-5 才能变成 5,而不是 1,因为它是数一排的。

我有一个 ID、值和它所属的位置。

例如:

ID  Value Page
1    1-5   2

我想要的输出是这样的:

ID Value Page
1    1    2
1    2    2
1    3    2
1    4    2
1    5    2

我试过使用 IF 语句

IF bioVerdi='1-5' THEN
        DO;
            ..
        END;

所以我不知道我应该在 DO 之间放什么;和结束;。有什么线索可以帮助我吗?

4

2 回答 2

3

您需要遍历范围内OUTPUT的值和值。该OUTPUT语句使数据步骤将记录写入输出数据集。

data want;
set have;
if bioVerdi = '1-5' then do;
   do value=1 to 5;
      output;
   end;
end;
于 2015-04-26T19:28:37.310 回答
3

这是另一种解决方案,它不受示例中给出的实际值“1-5”的限制,但适用于“1-6”、“1-7”、“1-100”等格式的任何值.

*this is the data you gave ;
data have ; 
    ID = 1 ; 
    value = '1-5';
    page = 2;
run;

data want ; 
 set have ; 

 min = scan( value, 1, '-' ) ; * get the 1st word, delimited by a dash ;
 max = scan( value, 2, '-' ) ; * get the 2nd word, delimited by a dash ;

 /*loop through the values from min to max, and assign each value as the loop iterates to a new column 'NEWVALUE.' Each time the loop iterates through the next value, output a new line */
 do newvalue = min to max ;
    output ; 
 end;

 /*drop the old variable 'value' so we can rename the newvalue to it in the next step*/
 drop value min max; 

 /*newvalue was a temporary name, so renaming here to keep the original naming structure*/
 rename newvalue = value ; 

run;
于 2015-04-27T00:49:19.877 回答