中式编程ruby枚举与R语言绘制不同颜色十六进制值的树状图
【摘要】 笔者使用ruby进行中式编程与R语言进行绘制不同颜色十六进制值的树状图
library("factoextra")
# Compute k-means with k = 3
set.seed(123)
res.km <- kmeans(scale(df[, -5]), 3, nstart = 25)
# K-means clusters showing the group of each individuals
res.km$cluster
data("USArrests")
df <- scale(USArrests)
res.hc <- eclust(df, "hclust") # compute hclust
fviz_dend(res.hc,palette = c("#BA55D3","#9370DB","#3CB371"), rect = TRUE) # dendrogam

fviz_dend(res.hc,palette = c("#7B68EE","#00FA9A","#48D1CC"), rect = TRUE) # dendrogam

开发环境:Rubymine、RStuido与微信截屏工具
The book of Ruby----A hands-on guide for the Adventurous---[英]Huw Collingbourne---no starch press
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区),文章链接,文章作者等基本信息,否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件至:cloudbbs@huaweicloud.com进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容。
- 点赞
- 收藏
- 关注作者
评论(0)