Stuart.Maxwell.Test(TrialSize)
Stuart.Maxwell.Test()所属R语言包:TrialSize
Stuart-Maxwell Test
斯图尔特 - 麦克斯韦测试
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extention from McNemar test to r by r table (r>2).
McNemar检验R的R表(2)扩展。
H0: pij = pji for all different i,j.
H0:PIJ = PJI所有不同的I,J。
Ha: not equal
哈:不等于
The test is finding whether there is a categorical shift from i pre-treatment to j post-treatment.
测试发现是否有一个明确的转变,从我的前处理后处理到j。
用法----------Usage----------
Stuart.Maxwell.Test(noncen, p.ij, p.ji, r)
参数----------Arguments----------
参数:noncen
the solution of the equation, which is non-central parameter of non-central chisquare distribtuion .
方程的解,非中心参数-中央卡方distribtuion的。
参数:p.ij
the probability of shift from i pre-treatment to j post-treatment
移位前处理从i到j的后处理中的概率
参数:p.ji
the probability of shift from j pre-treatment to i post-treatment
前处理从j到i的后处理中的移位的概率
参数:r
r by r tables, r is df
ŕ由r表,R为df
参考文献----------References----------
实例----------Examples----------
## The function is currently defined as[#功能目前被定义为]
function(noncen,p.ij,p.ji,r){
sum=0
n<-noncen*(for (j in 1:r){for (i in 1:j){
sum=sum+(p.ij[i,j]-p.ji[j,i])^2/(p.ij[i,j]+p.ji[j,i])}})^-1
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|