由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - help! SAS base 70 problem 17/35
相关主题
请教SAS BASE 70题里的第17题[SAS] call execute gives me error
请教一个SAS BASE题SAS base 70 题第29 和 31题
也问几道SAS base 题目SAS BASE 70 第 48 题答案是啥?
Base问题请教求一段SAS code
sas读入数据时的一个问题请教HELP~~About reading sas data set
sas里怎么取相邻2个observation的差?请问base(123题)的第114题
请教两个关于SAS的问题请教下SAS Base 70题的第59题
SAS base 87% pass todaySAS 问题求助 -- create new variable
相关话题的讨论汇总
话题: western话题: region话题: city话题: la话题: data
进入Statistics版参与讨论
1 (共1页)
p***7
发帖数: 535
1
data work.geo;
infile datalines;
input city $20.;
in city='Tulsa' then state='OK';
Region='Central';
if City='LA'then state='CA';
Region='western';
datalines;
Tulsa
LA
BANGOR;
RUN;
After data step execution, what will data set WORK.GEO contain?
The answer is blow
A
CITY STATE REGION
TULAS OK WESTERN
LA CA WESTERN
Bangor WESTERN
I could not understand it. I know there should be @ in the input statement.
but why all the regions are western?
Thanks so much
o*******w
发帖数: 2310
2
你该先看书啊,这个很基本。
后边的REGION 相当于对REGION 的值的更新,所有的OBS 都是这个最新值。
p***7
发帖数: 535
3
I get it! I think I overlooked the semicolon before the regions.
Thanks!
p***7
发帖数: 535
4
35
given the SAS DATA set SASDATA.TWO
X Y
-----
5 2
3 1
5 6
The program below is submitted
data sasuser.one sasuser.two other;
if x eq 5 then output sasuser.one;
if y lt 5 then output sasuser.two;
output;
run;
The answer is
A
sasuser.one has 5 observations
sasuser.two has 5 observations
work.other has 3 observations
Where is 5 observations from? total it is 3.
Thanks
o*******w
发帖数: 2310
5
the "output" in the last line will output everything again to each dataset.

【在 p***7 的大作中提到】
: 35
: given the SAS DATA set SASDATA.TWO
: X Y
: -----
: 5 2
: 3 1
: 5 6
: The program below is submitted
: data sasuser.one sasuser.two other;
: if x eq 5 then output sasuser.one;

p***7
发帖数: 535
6
Thanks!
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS 问题求助 -- create new variablesas读入数据时的一个问题请教
请教大家一个SAS问题sas里怎么取相邻2个observation的差?
请问一个SAS proc sql的写法请教两个关于SAS的问题
[合集] SAS里如何实现LOCF(LAST OBS CARRIED FORWARD)?SAS base 87% pass today
请教SAS BASE 70题里的第17题[SAS] call execute gives me error
请教一个SAS BASE题SAS base 70 题第29 和 31题
也问几道SAS base 题目SAS BASE 70 第 48 题答案是啥?
Base问题请教求一段SAS code
相关话题的讨论汇总
话题: western话题: region话题: city话题: la话题: data