Sensitivity.Index(TrialSize)
Sensitivity.Index()所属R语言包:TrialSize
Calculate the power for Sensitivity Index
计算功率敏感指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
H0: mu1 = mu2
H0:MU1 = MU2
Ha: mu1 is not equal to mu2
下:MU1是不等于MU2
The test is finding the treatment difference in QT interval.
测试发现QT间期的治疗差异。
d is not equal to 0, which is the difference of clinically importance.
d为不等于0,这是临床重要性的差异。
用法----------Usage----------
Sensitivity.Index(alpha, n, deltaT)
参数----------Arguments----------
参数:alpha
significance level
显着性水平
参数:n
sample size n
样本大小n
参数:deltaT
a measure of change in the signal-to-noise ratio for the population difference, which is the sensitivity index of population difference between regions.
中的信号 - 噪声比的人口有差异,这是人口区域之间的差异的灵敏度指数的变化的措施。
参考文献----------References----------
实例----------Examples----------
Example.15.5.1<-Sensitivity.Index(0.05,30,2.92)
Example.15.5.1
# power=0.805[功率= 0.805]
## The function is currently defined as[#功能目前被定义为]
function(alpha,n,deltaT){
t=qt(1-alpha/2,n-2)
p=1-pt(t,n-2,deltaT)+pt(-t,n-2,deltaT)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|