SAS proc报告ACROSS选项

时间:2014-06-14 20:50:26

标签: sas

我有以下代码

proc report data = sashelp.class nowd; 
column    sex  ;  
define sex / across ; 
run ;

结果如下

 Sex
 F  M
 9  *

为什么SAS显示星号*而不是数字?

然而,当我跑

proc report data = sashelp.class nowd; 
column   age sex  ;  
define age / group ;
define sex / across ; 
run ;

结果是正常的

     Sex
Age F  M
11  1  1
12  2  3
13  2  1
14  2  2
15  2  2
16  .  1

如果我想使用GROUP,是否必须使用ACROSS?为什么会有*

1 个答案:

答案 0 :(得分:1)

使用width

proc report data = sashelp.class nowd; 
column    sex  ;  
define sex / width=2 across ; 
run ;