我想使用某些数据集中各行的值多次调用宏。例如,如果我有这样的设置:
data inputs;
input n stat type $2;
datalines;
134 4.543 A
230 6.991 A
1056 5.991 B
97 6.33 C
490 3.43 B
...
;
run;
还有一些我想在这些值上运行的宏,如下所示:
%themacro(134,4.543,A)
%themacro(230,6.991,A)
%themacro(1056,5.991,B)
...
执行此操作的最佳选择是什么?我尝试了一些 我还没有完全锻炼。