Nothing
Dmin <- function(eset,m,crange = seq(4,40,4),repeats=3,visu=TRUE){
DminM <- matrix(0,nrow=length(crange),ncol=repeats)
for (ii in 1:repeats){
j <- 0
for (i in crange){
cl <- mfuzz(eset,c=i,m=m)
DminM[j <- j+1,ii] <- min(dist(cl[[1]]))
}
}
DminMav <- apply(DminM,1,mean)
if (visu) plot(crange,DminMav,xlab="Cluster number",ylab="Min. centroid distance")
return(DminMav)
}
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.