l******u 发帖数: 48 | 1 有差不多10道题是不确定的,记得起来就填上来...
1. x y
5 1
2 3
5 6
data data.1 data.2 other;
set c.xy;
if x=5 then output data.1;
if y<5 then output data.2;
output;
run;
问:分别有多少个observations 在 data.1,data.2,和 other 中?
答:A. 5 5 3
B. 2 2 1
C. 2 2 5
D. 1 2 0
我选的是C,不知道对了没?
2. |
g*******t 发帖数: 124 | 2 为什么不是2 2 3?
【在 l******u 的大作中提到】 : 有差不多10道题是不确定的,记得起来就填上来... : 1. x y : 5 1 : 2 3 : 5 6 : data data.1 data.2 other; : set c.xy; : if x=5 then output data.1; : if y<5 then output data.2; : output;
|
o******u 发帖数: 55 | 3 A. 5 5 3
【在 l******u 的大作中提到】 : 有差不多10道题是不确定的,记得起来就填上来... : 1. x y : 5 1 : 2 3 : 5 6 : data data.1 data.2 other; : set c.xy; : if x=5 then output data.1; : if y<5 then output data.2; : output;
|
f****r 发帖数: 1140 | |
c*****m 发帖数: 4817 | 5 最后那个单独的output没有指定文件名,所以默认会write observations
to all the data sets that are listed in the DATA statement
【在 g*******t 的大作中提到】 : 为什么不是2 2 3?
|
g*******t 发帖数: 124 | 6 oh, got it.
thanks!
【在 c*****m 的大作中提到】 : 最后那个单独的output没有指定文件名,所以默认会write observations : to all the data sets that are listed in the DATA statement
|
w****c 发帖数: 514 | |
x******n 发帖数: 173 | 8 高手
【在 c*****m 的大作中提到】 : 最后那个单独的output没有指定文件名,所以默认会write observations : to all the data sets that are listed in the DATA statement
|