我有data,每个条件包含54个样本(x和y)。 我通过以下方式计算了相关性:
> dat <- read.table("http://dpaste.com/1064360/plain/",header=TRUE)
> cor(dat$x,dat$y)
[1] 0.2870823
在R的cor()函数中是否存在生成相关SE的本地方法 和T检验的p值?
如本web(第14.6页)中所述
答案 0 :(得分:22)
我认为您正在寻找的只是cor.test()
函数,除了相关的标准误差之外,它将返回您要查找的所有内容。但是,正如您所看到的,该公式非常简单,如果使用cor.test
,则需要计算所需的所有输入。
使用示例中的数据(因此您可以自己将其与第14.6页的结果进行比较):
> cor.test(mydf$X, mydf$Y)
Pearson's product-moment correlation
data: mydf$X and mydf$Y
t = -5.0867, df = 10, p-value = 0.0004731
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.9568189 -0.5371871
sample estimates:
cor
-0.8492663
如果您愿意,您还可以创建如下所示的函数,以包含相关系数的标准误差。
为方便起见,这里是等式:
r =相关估计值和 n - 2 =自由度,两者都可以在上面的输出中找到。因此,一个简单的功能可能是:
cor.test.plus <- function(x) {
list(x,
Standard.Error = unname(sqrt((1 - x$estimate^2)/x$parameter)))
}
使用如下:
cor.test.plus(cor.test(mydf$X, mydf$Y))
这里,“mydf”定义为:
mydf <- structure(list(Neighborhood = c("Fair Oaks", "Strandwood", "Walnut Acres",
"Discov. Bay", "Belshaw", "Kennedy", "Cassell", "Miner", "Sedgewick",
"Sakamoto", "Toyon", "Lietz"), X = c(50L, 11L, 2L, 19L, 26L,
73L, 81L, 51L, 11L, 2L, 19L, 25L), Y = c(22.1, 35.9, 57.9, 22.2,
42.4, 5.8, 3.6, 21.4, 55.2, 33.3, 32.4, 38.4)), .Names = c("Neighborhood",
"X", "Y"), class = "data.frame", row.names = c(NA, -12L))
答案 1 :(得分:3)
难道你不能简单地从返回值中获取测试统计数据吗?当然,测试统计是估计/ se,所以你可以从估计除以tstat来计算:
在上面的答案中使用mydf
:
r = cor.test(mydf$X, mydf$Y)
tstat = r$statistic
estimate = r$estimate
estimate; tstat
cor
-0.8492663
t
-5.086732