R 피어슨 상관분석
R 피어슨 상관분석 #1. 방법 cor.test(x, y, alternative = c("two.sided", "less", "greater"), method = c("pearson", "kendall", "spearman"), exact = NULL, conf.level = 0.95, continuity = FALSE, ...) 스피어만이나 켄달의 타우 검정을 해야한다면 method 옵션을 입력해주면 됩니다. #2. 예제 R 내장 데이터 중 trees 데이터를 이용합니다. 먼저 trees 데이터를 살펴봅시다. > head(trees) Girth Height Volume 1 8.3 70 10.3 2 8.6 65 10.3 3 8.8 63 10.2 4 10.5 72 16.4 5 10.7 81 18.8 6 1..
2019. 12. 2.