"R hclust()"의 두 판 사이의 차이

31번째 줄: 31번째 줄:


[[분류: R stats]]
[[분류: R stats]]
[[분류: R 클러스터링]]

2019년 5월 11일 (토) 11:22 판

1 개요

R hclust()
  • "Hierarchical Clustering"
hc <- hclust(dist(USArrests), "ave")
hc
## 
## Call:
## hclust(d = dist(USArrests), method = "ave")
## 
## Cluster method   : average 
## Distance         : euclidean 
## Number of objects: 50 
plot(hc)
plot(hc, hang = -1)

Rplot06.png

Rplot07.png

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}