View source: R/sampleCompute.R
computeKmeans | R Documentation |
Perform K-means clustering, dealing with the number of clusters K, automatically or not.
computeKmeans(x, K = 0, K.max = 20, kmeans.variance.min = 0.95, graph = FALSE)
x |
matrix of raw data (point by line). |
K |
number of clusters. If K=0 (default), this number is automatically computed thanks to the Elbow method. |
K.max |
maximal number of clusters (K.Max=20 by default). |
kmeans.variance.min |
elbow method cumulative explained variance > criteria to stop K-search. |
graph |
boolean: if TRUE, figures for total of within-class inertia and explained variance are plotted. |
computeKmeans performs K-means clustering, dealing with the number of clusters K, automatically or not
res.kmeans results obtained from kmeans algorithm.
computeUnSupervised
, computeEM
dat <- rbind(matrix(rnorm(100, mean = 0, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 2, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 4, sd = 0.3), ncol = 2))
tf <- tempfile()
write.table(dat, tf, sep=",", dec=".")
x <- importSample(file.features=tf)
res.kmeans <- computeKmeans(x$features$initial$x, K=0, graph=TRUE)
plot(dat[,1], dat[,2], type = "p", xlab = "x", ylab = "y",
col = res.kmeans$cluster, main = "K-means clustering")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.