Cox.Equality(TrialSize)
Cox.Equality()所属R语言包:TrialSize
Test for equality in Cox PH model.
在Cox PH模型试验的平等。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
b is the log hazard ratio for treatment, b0 is the log hazard ratio for the controls
b是log的危险比治疗,b0为log的危险比的控制
H0: b=b0
H0:B = B0
Ha: not equal to b0
哈:不等于B0
The test is finding whether there is a difference between the hazard rates of the treatment and control.
该测试是寻找是否有危险率之间的差的治疗和控制。
用法----------Usage----------
Cox.Equality(alpha, beta, loghr, p1, p2, d)
参数----------Arguments----------
参数:alpha
significance level
显着性水平
参数:beta
power = 1-beta
功率= 1-β
参数:loghr
log hazard ratio=log(lamda2/lamda1)=b
登录危害比=的log(lamda2/lamda1)= B
参数:p1
the proportion of patients in treatment 1 group
患者在治疗1组的比例
参数:p2
the proportion of patients in treatment 2 group
治疗的患者的比例在2组
参数:d
the probability of observing an event
观察的事件的概率
参考文献----------References----------
实例----------Examples----------
Example.7.3.4<-Cox.Equality(0.05,0.2,log(2),0.5,0.5,0.8)
Example.7.3.4
## The function is currently defined as[#功能目前被定义为]
function(alpha,beta,loghr,p1,p2,d){
n=(qnorm(alpha/2)+qnorm(1-beta))^2/(loghr^2*p1*p2*d)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|