Vaccine.ELDI(TrialSize)
Vaccine.ELDI()所属R语言包:TrialSize
The evaluation of vaccine efficacy with Extremely Low Disease Incidence(ELDI)
评价疫苗的有效性,具有极低的疾病发病率(ELDI)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If the disease incidence rate is extremely low, the number of cases in the vaccine group given the total number of cases is distributed as a binomial random variable with parameter theta.
如果这种疾病的发病率是非常低的,在疫苗组病例总数的情况下二项式分布随机变量与参数θ波。
H0: theta>=theta0
H0:θ波> = theta0
Ha: theta< theta0
哈:THETA theta0
用法----------Usage----------
Vaccine.ELDI(alpha, beta, theta0, theta, pt, pc)
参数----------Arguments----------
参数:alpha
significance level
显着性水平
参数:beta
power=1-beta
功率= 1-β
参数:theta0
the true parameter for binomial distribution. Theta0 is usually equal to 0.5
真正的二项式分布的参数。 theta0通常等于0.5
参数:theta
theta=disease rate for treatment group/(disease rate for treatment group + for control group)
θ=发病率,治疗组/(发病率,治疗组+对照组)
参数: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.2<-Vaccine.ELDI(0.05,0.2,0.5,1/3,0.001,0.002)
Example.15.6.2
# 17837[17837]
## The function is currently defined as[#功能目前被定义为]
function(alpha,beta,theta0,theta,pt,pc){
#theta=pt/(pt+pc)[θ= PT /(PT + PC)]
n=(qnorm(1-alpha)*sqrt(theta0*(1-theta0))+qnorm(1-beta)*sqrt(theta*(1-theta)))^2/((pt+pc)*(theta-theta0)^2)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|