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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 4개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;R hclust()
;R hclust()
* "Hierarchical Clustering"
* "Hierarchical Clustering {{해석|[[계층적 클러스터링]]}}"


<source lang='r'>
<syntaxhighlight lang='r' notebook>
hc <- hclust(dist(USArrests), "ave")
hc <- hclust(dist(USArrests), "ave")
hc
hc
##
</syntaxhighlight>
## Call:
<syntaxhighlight lang='r' notebook>
## hclust(d = dist(USArrests), method = "ave")
##
## Cluster method  : average
## Distance        : euclidean
## Number of objects: 50
plot(hc)
plot(hc)
</syntaxhighlight>
<syntaxhighlight lang='r' notebook>
plot(hc, hang = -1)
plot(hc, hang = -1)
</source>
</syntaxhighlight>
 
[[File:Rplot06.png|600px]]
[[File:Rplot06.png|600px]]


26번째 줄: 24번째 줄:
* [[R dendrogram()]]
* [[R dendrogram()]]
* [[R kmeans()]]
* [[R kmeans()]]
* [[계층적 클러스터링]]


==참고==
==참고==
31번째 줄: 30번째 줄:


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

2021년 4월 28일 (수) 22:30 기준 최신판

1 개요[ | ]

R hclust()
hc <- hclust(dist(USArrests), "ave")
hc
plot(hc)
plot(hc, hang = -1)

Rplot06.png

Rplot07.png

2 같이 보기[ | ]

3 참고[ | ]

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