结果:找到“call execute”相关内容15个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
关于CALL EXECUTE()
49 个回复 - 32101 次查看
(注:由于有部分代码和啰嗦的程序解释,所以导致帖子很长,不得不分两层贴出)
关于 CALL EXECUTE() CALL EXECUTE() 的功能是"Resolves its argument and
executes the resolved value at the next step boundary"。 ...
2013-4-28 20:07 - pobel - SAS专版
call execute学习小结分享
7 个回复 - 10435 次查看
一、
call execute
1、
call execute的意思就是“执行这段代码”,但是一个data步中间的
call execute是不可能直接执行的,只有data步结束了这段代码才能执行。
2、
if ... then do; proc ... ; end;这样是无法执 ...
2014-10-10 16:51 - intheangel - SAS专版
关于 call execute调用循环中的变量
0 个回复 - 759 次查看
刚开始学SAS,请问如何能使
call execute 内部的函数p和J是循环中的1-12和2-13?谢谢!
DATA _NULL_ ;
DO p = 1 TO 12;
J = p+1;
call execute ("%TMC(p,J)");
END;
RUN;
2020-10-19 21:35 - 圣烨 - SAS专版
Call execute 問題
5 个回复 - 3936 次查看
執行Call
execute遇到以下問題,哪位大俠知道問題所在啊
575
call execute("%GenerateData("||vint||")");
WARNING: The quoted string currently being processed has become more than 262 characters long. ...
2013-10-20 00:55 - vieri32 - SAS专版
请教一个call execute和宏引用的问题
10 个回复 - 3136 次查看
data a;
input x $19.;
cards;
取"+"前面的数据
;
run;
%macro sh(note);
data b;
y="¬e";
run;
%mend;
%sh(%nrbquote(取"+"前的数据));
data _null_;
set a;
call execute(%nrstr("%sh(")|| ...
2013-3-2 22:44 - Imasasor - SAS专版
用call execute函数定义macro
2 个回复 - 2268 次查看
如果我想在data set 中做如下动作:
每一个步定义一个macro last,其值为month variable, 具体来说:
month = propcase(strip(scan(name,1,',')));
%let last = month;
由于每一步的month value都不一样, ...
2013-9-18 19:29 - hqs811 - SAS专版
关于坛子中CALL EXECUTE()用法产生的疑惑
16 个回复 - 6175 次查看
原贴:http://bbs.pinggu.org/thread-2377205-1-1.html
写的很精彩,但是试了一下,发现有些出入,可能是我水平有限,请帮助
“如果CALL EXECUTR()的参数中有宏语句,那么宏语句在何时执行会有三种 ...
2013-8-1 15:33 - fisheryou - SAS专版
CALL EXECUTE 一問
2 个回复 - 1098 次查看
我用
call execute 運行一個macro, macro里用用proc sql select into產生一個Macro variable, 但這個macro variables 好像得不出值來.
請問這是什麼原因...非常感謝.
以下紅字的地方好像根本不起作用..求解釋!!!
...
2013-3-31 19:56 - vieri32 - SAS专版
有关 call execute的疑惑
10 个回复 - 5467 次查看
data ex;
input x;
cards;
1
2
3
;
run;
%macro prob(prob=,newdata=);
data temp; /*这里举个简单的例子,让ex表中x乘以prob,并放入到temp表中*/
set ex;
x=x*&prob;
run;
%if %sysfunc(exist(&ne ...
2012-11-7 13:34 - ziyenano - SAS专版
data步中调用宏,关于call execute()参数的问题
2 个回复 - 4752 次查看
是用
call execute语句在data步中调用宏,
call execute()语句括号里面的参数一直写不对。
问题一:
跟crackman读sas(5)里面有一个例子:
data _null_;
do i=1 to 3;
call execute(cats('%inner ...
2011-3-28 08:36 - 邢不行 - SAS专版
求: call execute
7 个回复 - 4633 次查看
今天看了一段程序有个地方不明白
call execute("data temp"||compress(mc)||";");
call execute("set "||compress(mc)||";");
call execute("sl="||sl||";");
请问这里的“|| ||”符号是什么意思啊?有什 ...
2010-6-25 20:28 - sxf20060530 - SAS专版