p******s 发帖数: 229 | 1 接上面的问题。
要求得每个医院 estimated probability and its 95% CI of event y, 在 proc
logistic regression 加一个什么样的output statement 可以得到呢?
谢谢大家帮助新手!!
by statement will do it:
proc sort data=all; by hospital; run;
proc logistic;
by hospital;
model y=x1 x2 x3;
output .........;
run; | w***y 发帖数: 114 | 2 ods output parameterEstimate-est;
proc logistic;
by hospital;
model y=x1 x2 x3;
output .........;
run; | p******s 发帖数: 229 | |
|