由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 怎样得到estimated prob. of event in SAS Logistic Reg
相关主题
求助,SAS运行proc logistic 出现离奇的现象!帮朋友post一个SAS问题,求高人指点。多谢各位了!
请教一下sas proc logistic里contrast statement的用法SAS reg results are different for language SAS... :(
哭死,用SAS作logistic regression的coefficients为何全部和proc reg得到的相反??对于 interval censor 的情况怎么写SAS code呀?
SAS DATA 求助y = a + b * (c ^ x)
proc logistic遇到missing value怎么处理SAS Proc Mixed Estimate for 3 way interaction
help: proc logisticProc mixed 显示non est
请教SAS proc logistic 的一个问题SAS Logistic Regression算出来的Estimated Probability of Default太小
SAS 9.2.2[新手求救]怎样输出logistic regression的结果?
相关话题的讨论汇总
话题: logistic话题: proc话题: sas话题: reg话题: estimated
进入Statistics版参与讨论
1 (共1页)
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
3
thank you, worry!
1 (共1页)
进入Statistics版参与讨论
相关主题
[新手求救]怎样输出logistic regression的结果?proc logistic遇到missing value怎么处理
如何evaluate对binomial distribution的预测模型help: proc logistic
请教大家一个预测的问题请教SAS proc logistic 的一个问题
Q on logistic modelSAS 9.2.2
求助,SAS运行proc logistic 出现离奇的现象!帮朋友post一个SAS问题,求高人指点。多谢各位了!
请教一下sas proc logistic里contrast statement的用法SAS reg results are different for language SAS... :(
哭死,用SAS作logistic regression的coefficients为何全部和proc reg得到的相反??对于 interval censor 的情况怎么写SAS code呀?
SAS DATA 求助y = a + b * (c ^ x)
相关话题的讨论汇总
话题: logistic话题: proc话题: sas话题: reg话题: estimated