Yanıtlar:
kullanabilirsiniz cor.test
:
col1 = c(1,2,3,4)
col2 = c(1,4,3,5)
cor.test(col1,col2)
hangi verir:
# 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
Resmi sayfada istatistikler ve ekstra parametreler hakkında daha fazla bilgi:
https://stat.ethz.ch/R-manual/R-patched/library/stats/html/cor.test.html
İstediğiniz gibi aşağıdakiler olacaktır:
library(Hmisc) # You need to download it first.
rcorr(x, type="pearson") # type can be pearson or spearman
Burada x bir veri çerçevesidir ve rcorr "x" veri çerçevesinden oluşturulabildiği her korelasyonu döndürür.
Veya istatistiği kendiniz hesaplayabilirsiniz:
Burada verilerden tahmin edilen pearson korelasyonu, n ise örneklem büyüklüğüdür.
cor
(?cor
) Yardımını açıkça belirtiyorcor.test
("Ayrıca Bkz."