除参考外,不同级别的优势比
除了参考之外,如何获得比较不同组的奇数比的置信区间?
How do you get confidence intervals for odd ratios comparing different groups besides the reference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是使用不同的参考组重新运行模型。否则,在 SAS 中没有简单的方法可以做到这一点。您可以应用 Delta 方法并使用 beta 系数和标准误差手动进行计算。
如果您使用 Class 语句创建不同的组,则可以在 PROC 语句中使用格式和
ORDER=FORMATTED
选项(取决于您用于回归的过程 - 这在 genmod 中有效) 。确定哪个群体是参照物。如果您在模型中使用不相交的指示符变量,只需重新运行模型并保留不同的指示符即可。
Best way is to re-run the model with a different referent group. Otherwise, there is no easy way to do this in SAS. You could apply the Delta Method and do it by hand with the beta coefficients and standard errors.
If you are using a Class statement to create different groups, you can use formats and an
ORDER=FORMATTED
option in the PROC statement (depending on the procedure you are using for the regression - this works in genmod). To be sure about which group is the referent.If you are using disjoint indicator variables in your model, just re-run the model with a different indicator left out.