由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - base 123题第109题新的疑惑
相关主题
question about SAS BASE 123 NO.110问题又来了。SAS读excel的问题。
再问一道sas base题目How to do 'look up' in R?
sas读入数据时的一个问题请教急问
请教一个关于R的问题大牛帮忙:批处理读入多个文件!!
急请教 sas base 123 109-110题请教一个SAS数据input的问题
求问 sas _c_ 什么意思SAS数据输入疑问
[合集] excel并行一问,急~~~SAS base 问题,有关读入raw data时input 中num型变量格式后不加点的
问个data读入的问题。求助,谁能给我讲讲@,@@的区别啊?
相关话题的讨论汇总
话题: sue话题: employee话题: input话题: name话题: 读入
进入Statistics版参与讨论
1 (共1页)
N***0
发帖数: 303
1
The contents of the raw data file EMPLOYEE are listed below:
----|----10---|----20---|----30
Ruth 39 11
Jose 32 22
Sue 30 33
John 40 44
The following SAS program is submitted:
data test;
in file' employee';
input employee_ name $ 1-4;
if employee_ name = 'Sue' then input age 7-8;
else input idnum 10-11;
run;
Which one of the following values does the variable AGE contain when the
name of
the employee is "Sue"?
A. 30
B. 33
C. 40
D. . (missing numeric value)
答案 C
指针如何跳转的,这里没有问题,我的问题是关于column input,定义的数字应该即是
variable的长度又等于实际读入的column的
input employee_ name $ 1-4;
如果读到Sue这行,读入的employee_ name 应该是'sue ',就是在e后面又读入了一个空
格吧。
当比较if employee_ name = 'Sue' 的时候应该是不等于,然后应该input column 10-
11,所以我认为是44啊?但肯定是错误的,不知道该如何解释呢?
请大家指点我的概念理解错在哪里了。谢谢
1 (共1页)
进入Statistics版参与讨论
相关主题
求助,谁能给我讲讲@,@@的区别啊?急请教 sas base 123 109-110题
##问一个SAS BASE 问题##求问 sas _c_ 什么意思
问个sas日期小白问题[合集] excel并行一问,急~~~
sas求助: character to numeric并且替换原variable问个data读入的问题。
question about SAS BASE 123 NO.110问题又来了。SAS读excel的问题。
再问一道sas base题目How to do 'look up' in R?
sas读入数据时的一个问题请教急问
请教一个关于R的问题大牛帮忙:批处理读入多个文件!!
相关话题的讨论汇总
话题: sue话题: employee话题: input话题: name话题: 读入