data test;
infile cards;
input dose event trial;
output test;
cards;
0.0 3 15
1.1 4 15
1.3 4 15
2.0 3 15
2.2 5 15
2.8 4 15
3.7 5 15
3.9 9 15
4.4 8 15
4.8 11 15
5.9 12 15
6.8 13 15
;
run;
proc probit data=test optc log10;
model event/trial=dose;
run;
quit;
上面这段代码可以得到 _C_ 以及两个与 dose 相关的参数。我的问题是,这些参数是采用什么方法计算出来的。
因为我用 SPSS 对相同的数据作 probit 分析时,它很明显地将第一行数据舍弃了,但 SAS 显然没有。
谢谢!!



雷达卡



京公网安备 11010802022788号







