R
在 R 中找到 pearson 相關性的 p 值
是否可以在 R 中找到 pearson 相關性的 p 值?
為了找到皮爾遜相關性,我通常這樣做
col1 = c(1,2,3,4) col2 = c(1,4,3,5) cor(col1,col2) # [1] 0.8315218
但是我怎麼能找到這個的p值呢?
你可以使用
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