output out=chisqdat pchi lrchi n nmiss;
title 'Chi-Square Tests for 3 by 5 Table of Eye and Hair Color';
run;
smartie
4级会员
注册时间: 2004-03-09
帖子: 140
点数: 139
这已经回复了,看不懂的,可以查找-〉sas帮助。
楼主的机器看不到帮助的话,可以通过
tools->options->preference->web
在preferred browser选中other输入C:\Program Files\SAS Institute\SAS\V8\core\help\base.chm
设置一下。作者: shiyiming 时间: 2004-12-27 22:17 标题: winslow兄的程序 data one;
input x $ y $;
datalines;
a b
a a
b a
b b
;
run;
ods output list = list;
proc freq data = one;
table x*y / list;
run;