Answers:
您可以使用cor.test
:
col1 = c(1,2,3,4)
col2 = c(1,4,3,5)
cor.test(col1,col2)
这使 :
# Pearson's product-moment correlation
# data: col1 and col2
# t = 2.117, df = 2, p-value = 0.1685
# alternative hypothesis: true correlation is not equal to 0
# 95 percent confidence interval:
# -0.6451325 0.9963561
# sample estimates:
# cor
# 0.8315218
有关统计信息和其他参数的更多信息,请访问官方页面:
https://stat.ethz.ch/R-manual/R-patched/library/stats/html/cor.test.html
cor
(?cor
)上的帮助明确提及cor.test
(在“另请参阅”下)