Runs k-means clustering using implementation from
kmeans
. This function is not using stability.
UnweightedKMeansClustering(xdata, nc = NULL, ...)
A list with:
an array of binary and symmetric co-membership matrices.
a matrix of median weights by feature.
data matrix with observations as rows and variables as columns.
matrix of parameters controlling the number of clusters in the
underlying algorithm specified in implementation
. If nc
is
not provided, it is set to seq(1, tau*nrow(xdata))
.
additional parameters passed to kmeans
.