R hclust()

Jmnote (토론 | 기여)님의 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 }}