R/kmeansStepBIC.R

Defines functions kmeansStepBIC

Documented in kmeansStepBIC

kmeansStepBIC <-
function(x, centers = 1, iter.max = 10, nstart = 10, algorithm = c("Hartigan-Wong", "Lloyd", "Forgy", "MacQueen"), trace=FALSE ){
oldBIC <- kmeansBIC(kmeans(x, centers, iter.max, nstart, algorithm, trace))
centers <- centers + 1
newBIC <- kmeansBIC(kmeans(x, centers, iter.max, nstart, algorithm, trace))
while(oldBIC > newBIC)
{
oldBIC <- newBIC
centers <- centers + 1
newBIC <- kmeansBIC(kmeans(x, centers, iter.max, nstart, algorithm, trace))
}
return(list(BIC = oldBIC, kmeans = kmeans(x, centers = centers - 1, iter.max, nstart, algorithm, trace)))
}

Try the kmeansstep package in your browser

Any scripts or data that you put into this service are public.

kmeansstep documentation built on May 2, 2019, 5 p.m.