Nothing
# nocov start
kmeans = function(x, k, n_iter = 10L, init = NULL,
seed_mode = c("static_spread", "keep_existing", "static_subset", "random_subset", "random_spread"),
verbose = FALSE) {
seed_mode = match.arg(seed_mode)
seed_mode_codes = c("keep_existing", "static_subset", "static_spread", "random_subset", "random_spread")
seed_mode = match(seed_mode, seed_mode_codes)
# as per arma convention features are rows and observations are columns
x = t(x)
if(!is.null(init)) {
stopifnot(is.matrix(init) && is.numeric(init) && identical(dim(init), c(nrow(x), k)))
# trigger a copy
result = init + 0.0
} else {
result = matrix(0, nrow = nrow(x), ncol = k)
}
# arma will modify result in-place
status = arma_kmeans(x, k, seed_mode, n_iter, verbose, result)
# result is set of cluster centroids
result
}
# nocov end
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.