版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、R语言学习笔记-K平均算法(聚类)k-means ClusteringThis page demonstrates k-means clustering with R.> newiris <- iris> newiris$Species <- NULLApply kmeans to newiris, and store the clustering result in kc. The cluster number is set to 3.> (kc <- kmeans(newiris, 3)K-means clustering with 3 clusters
2、 of sizes 38, 50, 62Cluster means:Sepal.Length Sepal.Width Petal.Length Petal.Width1 6.850000 3.073684 5.742105 2.0710532 5.006000 3.428000 1.462000 0.2460003 5.901613 2.748387 4.393548 1.433871Clustering vector:1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 230 2 2 2 2 2 2 2 2 2 2 2 2 2
3、2 2 2 2 2 2 2 2 3 3 1 3 3 3 3 359 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 1 3 3 3 3 3 3 3 3 388 3 3 3 3 3 3 3 3 3 3 3 3 3 1 3 1 1 1 1 3 1 1 1 1 1 1 3 3 1117 1 1 1 3 1 3 1 3 1 1 3 3 1 1 1 1 1 3 1 1 1 1 3 1 1 1 3 1 1146 1 3 1 1 3Within cluster sum of squares by cluster:1 23.87947 15.15100 39.82097Availa
4、ble components:1 "cluster" "centers" "withinss" "size" Compare the Species label with the clustering result> table(iris$Species, kc$cluster)1 2 3setosa 0 50 0versicolor 2 0 48virginica 36 0 14Plot the clusters and their centres. Note that there are four dim
5、ensions in the data and that only the first two dimensions are used to draw the plot below. Some black points close to the green centre (asterisk) are actually closer to the black centre in the four dimensional space.> plot(newirisc("Sepal.Length", "Sepal.Width"), col=kc$cluster)> points(kc$cent
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年农经系统版村集体经济组织会计制度试题
- 2026年液压与气动技术基础题
- 2026年工作计划与总结制作技巧自测
- 2026年全县涉诈短信拦截题库
- 2026年农村电商服务站点运营与服务规范测试
- 2026年学习之翼智能试题教程
- STEM教育艺术教育融合课题申报书
- 2026年开发区主导产业招商引资优惠政策题库
- 居家锻炼身体英文演讲稿
- 演讲稿关于大学父母爱情
- 2026届东北三省三校高三第二次联合模拟考试物理试题(含答案解析)
- 2026北京海淀高三一模政治(含答案)
- 2025年《中华人民共和国疫苗管理法》知识测试试题及答案
- 初中物理八年级下册《功与机械能》单元教学设计:探究“功”的内涵、计算与意义
- 管住屏幕成就人生+高二下学期文明上网主题班会
- AI在水土流失治理植被覆盖监测与评估应用
- 初中生物八年级下册遗传与变异大概念统摄下科学思维赋能的中考专题复习教学设计
- 2026江西省信用融资担保集团股份有限公司社会招聘1人备考题库有答案详解
- 2026年青少年国防教育专题竞赛题库
- 立讯精密测评题库及答案
- 保密协议(2026年游戏行业保密)
评论
0/150
提交评论