boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - sas base (70) problem 59 help
相关主题
但谁能解释下truncover 吗?
问一个很菜的问题 missover truncover的区别
[合集] SAS data input help
请教下SAS Base 70题的第59题
[合集] 请问sas input的一个问题
请教一个SAS数据input的问题
[合集] 请教一个SAS数据input的问题
HELP~~About reading sas data set
请教,base 50 中的题目,
SAS数据输入疑问
相关话题的讨论汇总
话题: data话题: values话题: truncover话题: color话题: type
进入Statistics版参与讨论
1 (共1页)
p***7
发帖数: 535
1
----5----10---
daisyyellow
data flowers;
infile 'typecolor.dat' truncover;
length type $ 5 color $ 11;
input type $ color$;
run;
what are the value of variable type and color?
answer type=daisy color=
what I don't understand is the value of color. How does truncover work?
I look up some definition in sas documentation as followed.
Missover can replace truncover here? which will has the same result?
MISSOVER
causes the DATA step to assign missing values to any variables that do not
have values when the end of a data record is encountered. The DATA step
continues processing.
TRUNCOVER
causes the DATA step to assign values to variables, even if the values are
shorter than expected by the INPUT statement, and to assign missing values
to any variables that do not have values when the end of a record is
encountered.
Thanks so much in advance.
o*******w
发帖数: 2310
2
这个就是简单的LIST INPUT,与那两个定义没大关系。
就是考察的LIST INPUT 的空格问题。
p***7
发帖数: 535
3
Thanks so much for your patience just like what is on your icon.
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS数据输入疑问
Question: Importing csv file into SAS 9----太多变量
请教sas base 70题里第29题。。。
sas读入数据时的一个问题请教
70 题中的第29题答案是不是错了啊?
sas base 70的两道题
新手问个简单的sas问题
菜鸟麻烦大家帮我看看sas base 70题的29和123题的15题
一个sas base问题不明白,请教
也问几道SAS base 题目
相关话题的讨论汇总
话题: data话题: values话题: truncover话题: color话题: type