由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - a question for odds ratio estimate for logistic regression.
相关主题
请问个odds ratio 和 CI的问题[合集] 请教一个关于logistic regression参数的问题
请教一下sas proc logistic里contrast statement的用法请教:怎么能把Logistic regression的OR转化成probablity
R 里面 logistic regression (glm)怎么样输出 Odds Ratio 的 confidence interval今天和一个阿三聊segmented logistic regression
Odds Ratio问题求高人给看一下我的contrast写的对吗?
请问:如果Odds Ratio 小于1怎么办?问个logistic regression的问题。
请问:Age 什么时候应该 ’分段', 什么时候不分呢?应该选用哪个OR值来比较危险因素对结果变量的影响?
odds ratios in spline regression问个modeling data size的问题
questions on case-control and cross-sectional studiesSAS Logistic Regression算出来的Estimated Probability of Default太小
相关话题的讨论汇总
话题: psa话题: race话题: estimate话题: logistic话题: odds
进入Statistics版参与讨论
1 (共1页)
j******1
发帖数: 62
1
PSA is a continuous variable and race has two levels, one is coded 1 and
the other is coded 2.
Question: What are the odds ratio estimates and the 95% CI for a 4 ng/ml
change in PSA within each race?
I tried to write the SAS code as below. But it does not work.
proc logistic data=lib1.pros descending;
model capsule =race psa race*psa/
units psa= 4 ;
contrast 'psa(race=1)' race 1 psa*race ?/estimate=exp;
contrast 'psa(race=2)' race 2 psa*race ?/estimate=exp;
run;
Thank you so much!
q********i
发帖数: 795
2
1. to calculate ors for each race, you dont need interaction, simply do
separate logit for each category using BY statement.
2. to get the or per 4 ng/nl, just multiple the point estimate by 4, and
then exponential it, same with the se
b*******y
发帖数: 30
3
use 'unit=4'?
s*****h
发帖数: 232
4
can you use contrast statement for continuous variables?

【在 j******1 的大作中提到】
: PSA is a continuous variable and race has two levels, one is coded 1 and
: the other is coded 2.
: Question: What are the odds ratio estimates and the 95% CI for a 4 ng/ml
: change in PSA within each race?
: I tried to write the SAS code as below. But it does not work.
: proc logistic data=lib1.pros descending;
: model capsule =race psa race*psa/
: units psa= 4 ;
: contrast 'psa(race=1)' race 1 psa*race ?/estimate=exp;
: contrast 'psa(race=2)' race 2 psa*race ?/estimate=exp;

1 (共1页)
进入Statistics版参与讨论
相关主题
SAS Logistic Regression算出来的Estimated Probability of Default太小请问:如果Odds Ratio 小于1怎么办?
[新手求救]怎样输出logistic regression的结果?请问:Age 什么时候应该 ’分段', 什么时候不分呢?
保险公司technical interview 会怎么问?odds ratios in spline regression
谁给说说marketing analysis主要做什么questions on case-control and cross-sectional studies
请问个odds ratio 和 CI的问题[合集] 请教一个关于logistic regression参数的问题
请教一下sas proc logistic里contrast statement的用法请教:怎么能把Logistic regression的OR转化成probablity
R 里面 logistic regression (glm)怎么样输出 Odds Ratio 的 confidence interval今天和一个阿三聊segmented logistic regression
Odds Ratio问题求高人给看一下我的contrast写的对吗?
相关话题的讨论汇总
话题: psa话题: race话题: estimate话题: logistic话题: odds