Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一些逻辑回归,并且听说logisticStata 中的命令可用于在 OR 尺度上呈现系数,logit在 ln(OR) 尺度上也可以用于同样的事情。R有什么等价的吗?我用过glm,输出只有ln(OR),所以我需要自己计算,我担心我可能会误算一些东西。
logistic
logit
glm
您应该阅读 predict.glm 的帮助页面。设置类型=“响应”。
如果您只对计算 OR 感兴趣,您只需输入:
exp(coef(fit))
您在寻找plogis(logistic) 和qlogis(logit) 吗?例如qlogis(0.5)==0,plogis(0)==0.5
plogis
qlogis
qlogis(0.5)==0
plogis(0)==0.5