由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请教一道SAS题
相关主题
求教2道sas advance题目,包子答谢。Need urgent helps: How to use DDE to import password-protected excel file into SAS?
sas advance problem请帮忙看3道SAS题。
[合集] sas advance questionwhy this error in %if statement
[合集] 一道SAS Advanced 题目--关于call symputA SAS question
问个SAS题目,SAS 请教
SAS ADV passed!!!how to create page x of y in SAS
新人报道,兼问SAS data set的问题SAS help
在SAS里面如何进行数组操作?一个关于SAS macro的问题
相关话题的讨论汇总
话题: sas话题: sales话题: symput话题: mfirst话题: 3456
进入Statistics版参与讨论
1 (共1页)
s*********h
发帖数: 16
1
Given the following SAS data set ONE:
ONE
DIVISION SALES
A 1234
A 3456
B 5678
The following SAS program is submitted:
data _null_;
set one;
by division;
if first.division then call symput(’mfirst’,sales);
if last.division then call symput(’mlast’,sales);
run;
Which one of the following is the value of the macro variable MFIRST when
the above program finishes execution?
(A) null
(B) 1234
(C) 3456
(D) 5678
答案为什么是D呢?谢谢
q**j
发帖数: 10612
2
call symput is invoked twice.

【在 s*********h 的大作中提到】
: Given the following SAS data set ONE:
: ONE
: DIVISION SALES
: A 1234
: A 3456
: B 5678
: The following SAS program is submitted:
: data _null_;
: set one;
: by division;

1 (共1页)
进入Statistics版参与讨论
相关主题
一个关于SAS macro的问题问个SAS题目,
%do questionsSAS ADV passed!!!
请问SAS advanced macro global 和local新人报道,兼问SAS data set的问题
一个不理解的SAS program在SAS里面如何进行数组操作?
求教2道sas advance题目,包子答谢。Need urgent helps: How to use DDE to import password-protected excel file into SAS?
sas advance problem请帮忙看3道SAS题。
[合集] sas advance questionwhy this error in %if statement
[合集] 一道SAS Advanced 题目--关于call symputA SAS question
相关话题的讨论汇总
话题: sas话题: sales话题: symput话题: mfirst话题: 3456