博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
R: Hierarchical Cluster 层次聚类
阅读量:6334 次
发布时间:2019-06-22

本文共 1075 字,大约阅读时间需要 3 分钟。

hot3.png

构造数据:

> dataset = matrix(c(1,2,+ 1.2,2,+ 8,9,+ 0.9,1.8,+ 7,10,+ 8.8,9.2), nrow=6, byrow=T)> dataset     [,1] [,2][1,]  1.0  2.0[2,]  1.2  2.0[3,]  8.0  9.0[4,]  0.9  1.8[5,]  7.0 10.0[6,]  8.8  9.2

聚类:

> d = dist(dataset)> d           1          2          3          4          52  0.2000000                                            3  9.8994949  9.7590983                                 4  0.2236068  0.3605551 10.1118742                      5 10.0000000  9.8812955  1.4142136 10.2200783           6 10.6150836 10.4690019  0.8246211 10.8245092  1.9697716> hclust(d, method = "complete")Call:hclust(d = d, method = "complete")Cluster method   : complete Distance         : euclidean Number of objects: 6 > hc = hclust(d, method = "complete")> plot(hc)

分成两个簇:

> democut<-cutree(hc,k=2)> democut[1] 1 1 2 1 2 2

参考:

http://www.r-tutor.com/gpu-computing/clustering/hierarchical-cluster-analysis

http://stat.ethz.ch/R-manual/R-devel/library/stats/html/hclust.html
http://ecology.msu.montana.edu/labdsv/R/labs/lab13/lab13.html

转载于:https://my.oschina.net/letiantian/blog/324395

你可能感兴趣的文章
SaltStack配置salt-api
查看>>
各种情况下block的类型
查看>>
ThinkPHP 3.2.x 集成极光推送指北
查看>>
js作用域链
查看>>
java中如何选择Collection Class--java线程(第3版)
查看>>
为运维人员插上腾飞更远的翅膀!
查看>>
Word 2003中编辑标记与格式标记大讨论
查看>>
从国内向海外转移域名经验谈
查看>>
浅谈apache与tomact的整合
查看>>
SQL Server vNext CTP1 on Linux
查看>>
1-为 Lync Server 2010 准备 Active Directory 域服务
查看>>
NetBackup下ORACLE恢复测试方案实例解析
查看>>
【有奖征文】“失业”程序员的苦辣酸甜
查看>>
IE9是如何被FireFox4超越全球市场份额的?
查看>>
linux bunzip2命令
查看>>
敏捷个人:通过实践TOGAF来思考如何学习并应用新的方法?
查看>>
Android系统的开机画面显示过程分析(6)
查看>>
vivo Hi-Fi+QQ音乐 数字音乐市场的一剂良方
查看>>
Cocos2d-x 3.2 异步动态加载 -- 保卫萝卜开发总结
查看>>
聚焦触宝反侵权事件:中国创业者用什么护航海外市场大门
查看>>