SAS Proc 意味着 w/completetypes preloadfmt 不从用户格式输出 'other' 组
SAS Proc means w/ completetypes preloadfmt not outputting 'other' group from user format
我正在执行以下操作以获得输出 table,其中包含来自指定格式的 0 个 obs 行。输出结果适用于所有定义的格式类别,除了 'other' 类别,在本例中是记分卡的 "null weight"。
proc format;
value var03f
LOW - 75 = '79'
75 <- HIGH = '39'
OTHER = '76'
;
run;
proc means data=thismonth completetypes noprint nway;
class &thisvar./PRELOADFMT ;
by ScoreDate;
output out=way5(rename=(_freq_=count) keep=ScoreDate &thisvar. _freq_ _STAT_ where=(_STAT_ = "N"));
run;
proc print data=way5 l noobs;
var ScoreDate &thisvar. count;
run;
知道为什么 catch all 没有出现吗?
谢谢,
如果您想总结缺失的 class 个级别,您必须包括缺失的选项。
我正在执行以下操作以获得输出 table,其中包含来自指定格式的 0 个 obs 行。输出结果适用于所有定义的格式类别,除了 'other' 类别,在本例中是记分卡的 "null weight"。
proc format;
value var03f
LOW - 75 = '79'
75 <- HIGH = '39'
OTHER = '76'
;
run;
proc means data=thismonth completetypes noprint nway;
class &thisvar./PRELOADFMT ;
by ScoreDate;
output out=way5(rename=(_freq_=count) keep=ScoreDate &thisvar. _freq_ _STAT_ where=(_STAT_ = "N"));
run;
proc print data=way5 l noobs;
var ScoreDate &thisvar. count;
run;
知道为什么 catch all 没有出现吗?
谢谢,
如果您想总结缺失的 class 个级别,您必须包括缺失的选项。