由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 菜鸟接着请教sas base123题的112和50题里面的41题区别
相关主题
请教一个sas的sort date变量问题ask SAS code
请教大家一个SAS问题请问base(123题)的第114题
Sas code help- infile请教SAS Base50中的41题
请教SAS base的几道题再问一个sas的处理
请教两个关于SAS的问题问一个sas题
请教一个SAS问题sas help!!
请教一个SAS问题sas question
Quick Question怎么把SAS里一个表里的字符型字段改为数字型?
相关话题的讨论汇总
话题: data话题: program话题: sas话题: missing话题: output
进入Statistics版参与讨论
1 (共1页)
H******e
发帖数: 333
1
123题的41:
The contents of the raw data file SIZE are listed below:
--------10-------20-------30
72 95
The following SAS program is submitted:
data test;
infile 'size';
input @1 height 2. @4 weight 2;
run;
Which one of the following is the value of the variable WEIGHT in the
output data set?
A. 2
B. 72
C. 95
D. . (missing numeric value)
50题的41:
A raw data file is listed below.
1---+------10---+----20---+---
01/05/1989 Frank 11
12/25/1987 June 13
01/05/1991 Sally 9
The following SAS program is submitted using the raw data file as input:
data work.family;
infile 'file-specification';
input @1 data_of_birth mmddyy10.
@15 first_name $5.
@25 age 3;
run;
proc print data=work.family noobs;
run;
Which one of the following is the result?
a. The program executes, but the age values are missing in the output.
b. The program executes, but the date values are missing in the output.
c. The program fails to execute because the age informat is coded
incorrectly.
d. The program fails to execute because the date informat is coded
incorrectly.
看答案,123题的第112题选A。50题的41题选A
我没看出来这两道题的区别在哪里。都是没有. , 但为什么一个的output是常数2,另
一个就是missing。我也run了一下,结果确实如此,只是不明白。
请明白人帮着解答一下。谢谢
s******8
发帖数: 102
2
@4 weight 2;
@25 age 3;
我也记不清具体原因。运行了一下,2和3后面没有点,所以认为从2列读weight,第三列
读age。验证:
data work.family;
infile 'file-specification';
input @1 data_of_birth mmddyy10.
@15 first_name $5.
@25 age 9;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
怎么把SAS里一个表里的字符型字段改为数字型?请教两个关于SAS的问题
有个非常非常小白的SAS问题请教一个SAS问题
sas 代码问题请教一个SAS问题
请问SAS ADV 130中74 和80题Quick Question
请教一个sas的sort date变量问题ask SAS code
请教大家一个SAS问题请问base(123题)的第114题
Sas code help- infile请教SAS Base50中的41题
请教SAS base的几道题再问一个sas的处理
相关话题的讨论汇总
话题: data话题: program话题: sas话题: missing话题: output