Vaccine.RDI(TrialSize)
Vaccine.RDI()所属R语言包:TrialSize
Reduction in Disease Incidence(RDI) for Vaccine clinical trials.
降低疾病发病率(RDI)疫苗的临床试验。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The test is to find whether the vaccine can prevent the disease or reduce the incidence of the disease in the target population. Usually use prospective, randomized, placebo-controlled trials.
测试是查找是否有疫苗可预防的疾病或减少该病的发病率在目标人群中。通常使用前瞻性,随机,安慰剂对照试验。
用法----------Usage----------
Vaccine.RDI(alpha, d, pt, pc)
参数----------Arguments----------
参数:alpha
significance level
显着性水平
参数:d
the half length of the confidence interval of pt/pc
半长的置信区间的Pt / PC
参数:pt
the true disease incidence rates of the nt vaccines
真正的疾病发病率的NT疫苗
参数:pc
the true disease incidence rates of the nc controls
真正的疾病发病率的NC控制器
参考文献----------References----------
实例----------Examples----------
Example.15.6.1<-Vaccine.RDI(0.05,0.2,0.01,0.02)
Example.15.6.1
# 14214[14214]
## The function is currently defined as[#功能目前被定义为]
function(alpha,d,pt,pc){
n=(qnorm(1-alpha/2)/d)^2*((1-pt)/pt+(1-pc)/pc)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|