답변:
당신은 사용할 수 있습니다 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"데이터 프레임에서 형성 할 수있는 모든 상관 관계를 반환합니다.
또는 통계를 직접 계산할 수 있습니다.
여기서 는 데이터에서 추정 된 피어슨 상관 관계이고 n은 표본 크기입니다.
cor
(?cor
) 를 명시 적으로 언급cor.test
( "참조"아래)