Nothing
# From Venables and Ripley
myclus<-function(data = swiss,k = 3){
hc <- hclust(dist(data), "ave")
memb <- cutree(hc, k)
cent <- NULL
for(i in 1:k){
cent <- rbind(cent, apply(data[memb==i,,drop=FALSE], 2, mean))
}
return(kmeans(data,cent))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.