twPERM(ppiStats)
twPERM()所属R语言包:ppiStats
A function to compute a permutation test on a two way table.h
函数来计算两个方式table.h的置换试验
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function takes the entries of a two-way table and creates two binary logical vectors upon which it computes a permutation test to check for independence.
这个函数需要一个双向表的条目,并创建两个二进制逻辑向量后,它计算置换的独立测试,以检查。
用法----------Usage----------
twowayPERM( v1, v2, NPERM, stat, seed = 123)
makeBinVect(n11, n12, n21, n22)
参数----------Arguments----------
参数:v1
A logical vector.
一个逻辑向量。
参数:v2
A logical vector the same length as v1.
V1作为一个逻辑向量的长度相同。
参数:NPERM
A positive integer. The number of tests to be conducted.
一个正整数。要进行测试的数目。
参数:stat
A statistical function passed into to test the permutation on two vectors.
统计功能通过测试两个向量置换。
参数:seed
A positive integer. To set the seed for the random number generator.
一个正整数。要设置为随机数发生器的种子。
参数:n11
A postive integer. The value of (1,1) in the two way table.
一个正整数。 (1,1)的价值在双向表。
参数:n12
A postive integer. The value of (1,2) in the two way table.
一个正整数。 (1,2)的价值在双向表。
参数:n21
A postive integer. The value of (2,1) in the two way table.
一个正整数。 (2,1)的价值在双向表。
参数:n22
A postive integer. The value of (2,2) in the two way table.
一个正整数。 (2,2)的价值在双向表。
值----------Value----------
A numeric vector containing the p-values for the test that the permutation of the vector v1 is independent from v2.
一个数字矢量矢量V1的排列是从V2独立的测试,其中包含的p值。
作者(S)----------Author(s)----------
T Chiang
举例----------Examples----------
x <- makeBinVect(13, 17, 23, 71)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|