RelativeRisk.NIS(TrialSize)
RelativeRisk.NIS()所属R语言包:TrialSize
Relative Risk in Parallel Design test for Non-inferiority/Superiority
在的并行设计为Non-inferiority/Superiority测试的相对风险
译者:生物统计家园网 机器人LoveR
描述----------Description----------
H0: OR <= margin
H0:OR =保证金
Ha: OR > margin
哈:OR>保证金
用法----------Usage----------
RelativeRisk.NIS(alpha, beta, or, k, pt, pc, margin)
参数----------Arguments----------
参数:alpha
significance level
显着性水平
参数:beta
power = 1-beta
功率= 1-β
参数:or
or=pt(1-pc)/pc(1-pt)
= PT(1-PC)/件(1-PT)
参数:k
k=nT/nC
K = NT / NC
参数:pt
the probability of observing an outcome of interest for a patient treatment by a test treatment
感兴趣的病人的治疗观察的结果的可能性的试验治疗
参数:pc
the probability of observing an outcome of interest for a patient treatment by a control
通过控制病人的治疗观察的结果的兴趣的概率
参数:margin
the superiority or non-inferiority margin
的优点和非劣效性保证金
参考文献----------References----------
实例----------Examples----------
Example.4.6.4<-RelativeRisk.NIS(0.05,0.2,2,1,0.4,0.25,.2)
Example.4.6.4
## The function is currently defined as[#功能目前被定义为]
function(alpha,beta,or,k,pt,pc,margin){
n.c<-(qnorm(1-alpha)+qnorm(1-beta))^2*(1/(k*pt*(1-pt))+1/(pc*(1-pc)))/(log(or)-margin)^2
n.c
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|