multi_kmeans_gen {ConsensusClustering}R Documentation

Multiple K-means generation

Description

Multiple K-means generation

Usage

multi_kmeans_gen(X, rep = 10, range.k = c(2, 5), method = "random")

Arguments

X

input data Nsample x Nfeatures

rep

number of repeats

range.k

vector of minimum and maximum values for k c(min, max)

method

method for the choice of k at each repeat c("random", "silhouette")

Details

At each repeat, k is selected randomly or based on the best silhouette width from a discrete uniform distribution between range.k[1] and range.k[2]. Then k-means clustering is applied and result is returned.

Value

matrix of clusterings Nsample x Nrepeat

Examples

X = gaussian_clusters()$X
Clusters = multi_kmeans_gen(X)


[Package ConsensusClustering version 1.2.0 Index]