perm.cor.test(RVAideMemoire)
perm.cor.test()所属R语言包:RVAideMemoire
Permutational Pearson's correlation test
Permutational Pearson相关测试
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Perform a permutational Pearson's product-moment correlation test.
执行一个permutational的皮尔逊积矩相关测试。
用法----------Usage----------
perm.cor.test(x, y, alternative = c("two.sided", "less", "greater"), nperm = 999)
参数----------Arguments----------
参数:x, y
numeric vectors of data values. x and y must have the same length.
的数据值的数值向量。 x和y必须具有相同的长度。
参数:alternative
a character string specifying the alternative hypothesis, must be one of "two.sided" (default), "greater" or "less".
一个字符串,指定其他假设,必须有一个"two.sided"(默认),"greater"或"less"。
参数:nperm
number of permutations.
的排列数。
值----------Value----------
参数:statistic
test statistics of the parametric test.
参数化测试的测试统计数据。
参数:permutations
number of permutations.
的排列数。
参数:p.value
p-value of the permutational test.
p-值的permutational测试。
参数:estimate
the estimated correlation coefficient.
估计的相关系数。
参数:alternative
a character string describing the alternative hypothesis.
一个字符串,描述了另一种假设。
参数:H1
a character string giving the explicit alternative hypothesis.
一个字符的字符串,给出了明确的替代假说。
参数:data.name
a character string giving the names of the data.
一个字符的字符串,给出的数据的名称。
参数:conf.int
the 95% confidence interval for the correlation coefficient.
的相关系数在95%的置信区间。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
cor.test
cor.test
实例----------Examples----------
x <- rnorm(50)
y <- runif(50)
perm.cor.test(x,y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|