我有以下代码
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
?为什么会有*
?
答案 0 :(得分:1)
使用width
proc report data = sashelp.class nowd;
column sex ;
define sex / width=2 across ;
run ;