data scores; infile datalines delimiter=','; input test1 test2 test3; datalines;91,87,9597,,92,1,1;
With the FLOWOVER option in effect, the data set SCORES contains two, not three, observations.
输出结果为什么只有两行啊。。。为什么是第三行只有一个1,剩下两个是missing value呢?
我只知道在flowover的情况下,如果在中间几行数据发生了数据不足的问题,sas会接下去读取下一行,那是已经是最后一行不能再往下读了。。所以才这一行才会不见吗? 那为什么不能是missing value呢?
sas小白先谢谢各路大神!