由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - One simple question about %if
相关主题
请问熟悉SAS IML的求教sas base online tutor 的quiz中的一题
macro问题诚心求教非常感谢--continue questiontwo sas adv questions
SAS Code question? How to understand this output?sas advance problem
sas 代码问题周五考Advance,问2道SAS题
请问SAS ADV 130中74 和80题请教一道SAS advance题。(killtest 75)
请教- 怎么对R code加密?请问一道SAS ADV中的题目
菜鸟接着请教sas base123题的112和50题里面的41题区别why this error in %if statement
[help] a SAS probelm菜鸟请教关于赋给macro variables变量值
相关话题的讨论汇总
话题: thursday话题: sysday话题: execute话题: do话题: proc
进入Statistics版参与讨论
1 (共1页)
s********1
发帖数: 54
1
Who can tell me why the answer is B rather than D?
The following SAS program is submitted:
%macro execute;
[_insert_statement_here_]
proc print data=SASUSER.HOUSES;
run;
%end;
%mend execute;
%execute
Which statement completes the program so that the PROC PRINT step executes
on Thursday?
A. if &sysday = Thursday then %do;
B. %if &sysday = Thursday %then %do;
C. %if “&sysday” = Thursday %then %do;
D. %if &sysday = “Thursday” %then %do;
D*********t
发帖数: 5748
2
Differences compared to SAS expressions:
Character operands are not quoted.
Ranges such as 1 <= &x <= 10 behave differently.
The IN operator does not require parentheses.
s********1
发帖数: 54
3
Can you explain more in detail about these four usages? Thank you.

【在 D*********t 的大作中提到】
: Differences compared to SAS expressions:
: Character operands are not quoted.
: Ranges such as 1 <= &x <= 10 behave differently.
: The IN operator does not require parentheses.

1 (共1页)
进入Statistics版参与讨论
相关主题
菜鸟请教关于赋给macro variables变量值请问SAS ADV 130中74 和80题
[合集] 问一个sas的问题2请教- 怎么对R code加密?
A Statistician-Turned Expert in Executive Package菜鸟接着请教sas base123题的112和50题里面的41题区别
is it possible to create a simple GUI in R?[help] a SAS probelm
请问熟悉SAS IML的求教sas base online tutor 的quiz中的一题
macro问题诚心求教非常感谢--continue questiontwo sas adv questions
SAS Code question? How to understand this output?sas advance problem
sas 代码问题周五考Advance,问2道SAS题
相关话题的讨论汇总
话题: thursday话题: sysday话题: execute话题: do话题: proc