|
用你寫的程式跑了SAS是OK的...
樣本數最後剩下50個
我的SAS版本是9.2
NOTE: SAS initialization used:
real time 1.26 seconds
cpu time 0.96 seconds
1 data mst;
2 do i=1 to 100;
3 output;
4 end;
5 run;
NOTE: The data set WORK.MST has 100 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
6
7 data mst;
8 modify mst;
9 if i le 50 then remove;
10 run;
NOTE: There were 100 observations read from the data set WORK.MST.
NOTE: The data set WORK.MST has been updated. There were 0 observations rewritten, 0
observations added and 50 observations deleted.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
|