| cluster_kmeans | R Documentation |
k-means clustering using stats::kmeans.
cluster_kmeans(k = 1)
k |
the number of clusters to form. |
Partitions data into k clusters minimizing within‑cluster sum of squares. The intrinsic quality metric returned is the total within‑cluster SSE (lower is better).
returns a k-means object.
MacQueen, J. (1967). Some Methods for classification and Analysis of Multivariate Observations. Lloyd, S. (1982). Least squares quantization in PCM.
# setup clustering
model <- cluster_kmeans(k=3)
#load dataset
data(iris)
# build model
model <- fit(model, iris[,1:4])
clu <- cluster(model, iris[,1:4])
table(clu)
# evaluate model using external metric
eval <- evaluate(model, clu, iris$Species)
eval
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.