gpt4 book ai didi

loops - 使用 doop 循环 sas 保留变量

转载 作者:行者123 更新时间:2023-12-03 15:18:26 24 4
gpt4 key购买 nike

是否有任何形式可以在数据步骤中使用 doop 循环保留变量?
将是这样的:

data test;
input id aper_f_201501 aper_f_201502 aper_f_201503 aper_f_201504
aper_f_201505 aper_f_201506;
datalines;
1 0 1 2 3 5 7
2 -1 5 4 8 7 9
;
run;

%macro test;
%let date = '01Jul2015'd;

data test2;
set test(keep=do i = 1 to 3;
aper_f_%sysfunc(intnx(month,&date,-i,begin),yymmn6.);
end;)
run;
%mend;
%test;

我需要迭代几个日期。
非常感谢。

最佳答案

您需要使用宏 %do循环而不是数据步骤 do循环,这在数据集选项中间无效。也不要在数据集选项的中间生成那些额外的分号。并且一定要包含一个分号来结束你的 SET 语句。

%macro test;
%local i date;
%let date = '01Jul2015'd;

data test2;
set test(keep=
%do i = 1 %to 3;
aper_f_%sysfunc(intnx(month,&date,-i,begin),yymmn6.)
%end;
);
run;
%mend;
%test;

关于loops - 使用 doop 循环 sas 保留变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51988041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com