由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 但谁能解释下truncover 吗?
相关主题
请教下SAS Base 70题的第59题请教一个SAS数据input的问题
sas base (70) problem 59 help[合集] 请教一个SAS数据input的问题
HELP~~About reading sas data set请教一道sas base题
问一个很菜的问题 missover truncover的区别SAS infile input 问题
也问几道SAS base 题目SAS软件下载地址已失效(as of 3/23/2010)
请教SAS BASE 70题里的第59题请教用SAS的一个数据处理的问题
[合集] 请问sas input的一个问题SAS 求助: filenames
[合集] SAS data input helpSas code help- infile
相关话题的讨论汇总
话题: type话题: color话题: truncover话题: daisy
进入Statistics版参与讨论
1 (共1页)
h****9
发帖数: 26
1
Item 59 of 70 Mark item for review
Given the contents of the raw data file TYPECOLOR.DAT:
----+----10---+----20---+----30
daisyyellow
The following SAS program is submitted:
data FLOWERS;
infile 'TYPECOLOR.DAT' truncover;
length
Type $ 5
Color $ 11;
input
Type $
Color $;
run;
What are the values of the variables Type and Color?
A.
Type=daisy, Color=yellow
B.
Type=daisy, Color=w
C.
Type=daisy, Color=daisyyellow
D.
Type=
j******o
发帖数: 127
2
TRUNCOVER
Forces the INPUT statement to stop reading when it gets to the end of a
short line. This option will not skip information.
PAD
Pads short lines with blanks to the length of the LRECL= option.
MISSOVER
Sets all empty vars to missing when reading a short line. However, it can
also skip values.
f********m
发帖数: 197
3
这里用的是list input,daisyyellow之间没有delimeter,所以只读进去前5字母作为
Type.后面的字母当成是第一个variable的一部分,被忽略了。跟truncover的用法无关。
而如果用Column input或者format input并且最后一个variable的长度取到了行末,例如
input Type $ 1-5 Color $ 6-17;
这时候不用truncover的话得到的是
Type color
daisy
用的话则得到
Type color
daisy yellow
:)

【在 h****9 的大作中提到】
: Item 59 of 70 Mark item for review
: Given the contents of the raw data file TYPECOLOR.DAT:
: ----+----10---+----20---+----30
: daisyyellow
: The following SAS program is submitted:
: data FLOWERS;
: infile 'TYPECOLOR.DAT' truncover;
: length
: Type $ 5
: Color $ 11;

j******o
发帖数: 127
4
这里有个解释,看一下:
http://www.masil.org/sas/input.html
1 (共1页)
进入Statistics版参与讨论
相关主题
Sas code help- infile也问几道SAS base 题目
问个SAS 数据读入的问题请教SAS BASE 70题里的第59题
请教一个SAS读中文数据库的问题[合集] 请问sas input的一个问题
问一个数据分析的问题[合集] SAS data input help
请教下SAS Base 70题的第59题请教一个SAS数据input的问题
sas base (70) problem 59 help[合集] 请教一个SAS数据input的问题
HELP~~About reading sas data set请教一道sas base题
问一个很菜的问题 missover truncover的区别SAS infile input 问题
相关话题的讨论汇总
话题: type话题: color话题: truncover话题: daisy