由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS题求教
相关主题
已解决求助关于SAS base123
SAS base question这sas BASE 考试很坑爹..
请教, base 123 , if then elseSpeaking of chance!!
请教一个sas123问题Have anybody used Mahout ?
问个sas base的题目market will be the ultimate judge of your expertise and value
[合集] Ask two base test questions?onsite时候做presentation,怎么选择topic
统计 SAS techincal screen电话面试p-val's explaination.
一个工作posting from recruiter[转载] Re: SAS plot problem
相关话题的讨论汇总
话题: expertise话题: sas话题: level话题: else话题: high
进入Statistics版参与讨论
1 (共1页)
l**g
发帖数: 69
1
A SAS data set
name level
Frank 1
Joan 2
Sui 2
Jose 3
Burt 4
Kelly .
The following SAS program is submitted:
data work.expertise;
set work.levels;
if level=. then
expertise = 'Unknown';
else if level=1 then
expertise='Low';
else if level=2 or 3 then
expertise='Medium';
else
expertise='High';
run;
问 variable EXPERTISE都包含什么值?
所给的答案是 Low, Medium, and Unknown only
难道不应该有 High 吗? Burt的level是4,符合最后一个else啊。
多谢
g*******t
发帖数: 124
2
or 3,的那个3永远为真。
就像x=1 or x=2 和x=1 or 2是不同的。

【在 l**g 的大作中提到】
: A SAS data set
: name level
: Frank 1
: Joan 2
: Sui 2
: Jose 3
: Burt 4
: Kelly .
: The following SAS program is submitted:
: data work.expertise;

l**g
发帖数: 69
3
多谢! 居然没有注意到这个,我晕

【在 g*******t 的大作中提到】
: or 3,的那个3永远为真。
: 就像x=1 or x=2 和x=1 or 2是不同的。

1 (共1页)
进入Statistics版参与讨论
相关主题
[转载] Re: SAS plot problem问个sas base的题目
SAS下载安装完全教程[合集] Ask two base test questions?
Re: SAS Certified Exam information?统计 SAS techincal screen电话面试
SAS programmer interview help!一个工作posting from recruiter
已解决求助关于SAS base123
SAS base question这sas BASE 考试很坑爹..
请教, base 123 , if then elseSpeaking of chance!!
请教一个sas123问题Have anybody used Mahout ?
相关话题的讨论汇总
话题: expertise话题: sas话题: level话题: else话题: high