其中col_1都是缺失的(也可能不是缺失的,因为我记得在SAS里,字符型数据缺失值显示为空,数值型数据缺失值显示为.)。我的问题是:要怎么选出col_1是缺失的观测值?
我试了以下方法,都不行:
- 1. proc sql;
- select * from aa where col_1 is null;
- quit;
- 2. proc sql;
- select * from aa where col_1 = '';
- quit;
- 3. proc sql;
- select * from aa where col_1 = '.' ;
- quit;
- 4. data bb;
- set aa; where missing(col_1);
- run;