我一直在firstobs
set
data test ;
set test (firstobs=5) ;
run ;
最近我看到了一个代码
data test ;
infile 'C:xxx' firstobs=5 ;
input xxx ;
run ;
我尝试过运行但是没有用。是否可以在firstobs
infile
答案 0 :(得分:1)
是的,可以使用这样的第一个。
infile file-specification firstobs=50 obs=100;
会读取50到100的观察结果。