95
29
8
5
50
data test; set sashelp.class; if weight<100 then delete; /*指定条件的观测删除*/ run; proc print data=test; run;