由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 【包子】sample size calculation for logistic reg问题
相关主题
那位大哥大姐用sas9.2呀?请帮忙run一段code。简单问题求助
power 的coding问个工作中遇到的问题
菜鸟问个logistic regression的问题a regression model test issue
Fitting model, 头大,求建议Help:ROC from R
统计专业问题请教,谢谢大家a sas logistic modeling question
如何evaluate对binomial distribution的预测模型求助,SAS运行proc logistic 出现离奇的现象!
做logistic regression,cases很少但是predictor很多How to use sas to calculate the power of logistic regressi
Weighted logistic Regression请教一道作业题
相关话题的讨论汇总
话题: mi话题: warning话题: logistic话题: plot话题: power
进入Statistics版参与讨论
1 (共1页)
S********a
发帖数: 359
1
请教个sample size calculation for logistic reg的问题,predictor是PM(25%的人
是在exposure下,trial的个数我自己写了个1000), outcome 是MI(4个人里有一个人
是MI,所以P=0.25,trial的个数也是自己写的1000),我想看sample size 要多少才可
以significantly odd ratio>1.
proc power;
logistic
vardist("pm")=binomial(0.25, 1000)
vardist("MI")=binomial(0.25, 1000)
testpredictor="MI"
responseprob=0.25
testoddsratio=1
alpha=0.05
power=0.8
ntotal=.;
plot y=power min=0.01 max=0.99 yopts=(ref=0.8 crossref=yes) vary(symbol);
run;
结果:出错了
WARNING: The magnitude of the effect is zero in one of the scenarios in the
output table.
WARNING: Power is less than alpha in one of the scenarios in the plot.
WARNING: The magnitude of the effect is zero in 19 scenarios in the plot.
ERROR: No valid data to plot.
我的code哪里有问题呢?谢谢
P****D
发帖数: 11146
2
In this option you need to give a reasonable odds ratio for the predictor.
It can be anything but 1.
Also testpredictor="pm".

【在 S********a 的大作中提到】
: 请教个sample size calculation for logistic reg的问题,predictor是PM(25%的人
: 是在exposure下,trial的个数我自己写了个1000), outcome 是MI(4个人里有一个人
: 是MI,所以P=0.25,trial的个数也是自己写的1000),我想看sample size 要多少才可
: 以significantly odd ratio>1.
: proc power;
: logistic
: vardist("pm")=binomial(0.25, 1000)
: vardist("MI")=binomial(0.25, 1000)
: testpredictor="MI"
: responseprob=0.25

S********a
发帖数: 359
3
谢谢发呆MM,包子已发!

【在 P****D 的大作中提到】
: In this option you need to give a reasonable odds ratio for the predictor.
: It can be anything but 1.
: Also testpredictor="pm".

1 (共1页)
进入Statistics版参与讨论
相关主题
请教一道作业题统计专业问题请教,谢谢大家
Gamma distribution for power analysis,请大拿指点如何evaluate对binomial distribution的预测模型
请教一个用R画图的问题做logistic regression,cases很少但是predictor很多
How to selectively plot data in RWeighted logistic Regression
那位大哥大姐用sas9.2呀?请帮忙run一段code。简单问题求助
power 的coding问个工作中遇到的问题
菜鸟问个logistic regression的问题a regression model test issue
Fitting model, 头大,求建议Help:ROC from R
相关话题的讨论汇总
话题: mi话题: warning话题: logistic话题: plot话题: power