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

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


<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
hc <- hclust(dist(USArrests), "ave")
hc <- hclust(dist(USArrests), "ave")
hc
hc
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
plot(hc)
plot(hc)
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
plot(hc, hang = -1)
plot(hc, hang = -1)
</source>
</syntaxhighlight>


[[File:Rplot06.png|600px]]
[[File:Rplot06.png|600px]]

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 }}