Відповіді:
Ви можете використовувати 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
Виконайте наступне:
library(Hmisc) # You need to download it first.
rcorr(x, type="pearson") # type can be pearson or spearman
Тут x - це кадр даних, і rcorr повертає кожну кореляцію, яку можна сформувати з кадру даних "x".
Або ви могли самі порахувати статистику:
cor
?cor
cor.test