x**********t 发帖数: 45 | 1 (如题)
A raw data file is listed as below:
ranch, 1250
split,1190
condo,1400
twostory,1810
ranch,1500
split,1305
split,1615
The following SAS program is submitted using the raw data file as input:
data cd;
infile 'filename' dsd;
input style $ @;
if style='condo' or stype='ranch' then input sqfeet;
run;
How many observations does the cd data set contain?
正确答案是7,为什么不是3呢? | p***l 发帖数: 1775 | 2 我野鸡分析一下:
第一题if管的是sqfeet
输出7个obs, 4个的sqft miss了
第二题if管的是style
只有3个style
【在 x**********t 的大作中提到】 : (如题) : A raw data file is listed as below: : ranch, 1250 : split,1190 : condo,1400 : twostory,1810 : ranch,1500 : split,1305 : split,1615 : The following SAS program is submitted using the raw data file as input:
| p*5 发帖数: 311 | 3 没错!
【在 p***l 的大作中提到】 : 我野鸡分析一下: : 第一题if管的是sqfeet : 输出7个obs, 4个的sqft miss了 : 第二题if管的是style : 只有3个style
|
|