码迷,mamicode.com
首页 > 其他好文 > 详细

R-kmeans

时间:2014-07-07 19:35:07      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   cti   io   

data <- read.csv("//Users//tangjingxiao//Desktop//2.csv",header=T,sep="\t",encoding="utf-8")
data
fix(data)
View(data)
newdata <- t(data)
view(newdata)
View(newdata)
kc <- kmeans(newdata,30)
kc
plot(newdata,col=kc$cluster)
points(kc$centers, col = 1:2, pch = 8, cex = 2)
ss <- function(y) sum(scale(y, scale = FALSE)^2)
ss
## cluster centers "fitted" to each obs.:
fitted.newdata <- fitted(kc);
head(fitted.newdata);
resid.newdata<- newdata - fitted(kc);
resid

 

R-kmeans,布布扣,bubuko.com

R-kmeans

标签:des   style   blog   color   cti   io   

原文地址:http://www.cnblogs.com/ilxx1988/p/3813318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!