我是SAS的新手,正在使用处理数字变量' width'的数据集。此变量有多个缺失值,显示为'。'我需要将它们转换为“#No; No Sample'在结果中如果我刚刚转换为零,我会这样做:
if width=. then do width='0';
但由于我需要将其改为角色,我不确定该怎么做。
由于
答案 0 :(得分:5)
定义格式并将其与变量一起使用。
proc format ;
value nosample
.='No Sample'
;
run;
proc print data=have ;
format width nosample.;
run;
答案 1 :(得分:0)
这会有帮助吗?
DATA testwidth;
INPUT @1 BirthDate DATE11.
@13 Width 8.; *Decimal and integer ages using YRDIF;
FORMAT BirthDate DATE11. width 8.;
DATALINES;
01-MAR-2017 10
02-MAR-2017 9
03-MAR-2017 8
28-MAR-2017 11
30-MAR-2017
02-JUN-2017 6
02-JUL-2017 5
;
data newds (drop=num_width);
length width $12.;
set testwidth(rename=(width=num_width));
if num_width=. then width = 'NO SAMPLE';
else width = num_width;
run;