silhouette.km {msos} | R Documentation |
Silhouettes for K
-Means Clustering
Description
Find the silhouettes (12.9) for K-means clustering from the data and and the groups' centers.
Usage
silhouette.km(x, centers)
Arguments
x |
The |
centers |
The |
Details
This function is a bit different from the silhouette function in the cluster package, Maechler et al., 2005.
Value
The n
-vector of silhouettes, indexed by the observations'
indices.
Examples
# Uses sports data.
data(sportsranks)
# Obtain the K-means clustering for sports ranks.
kms <- kmeans(sportsranks, centers = 5, nstart = 10)
# Silhouettes
sil <- silhouette.km(sportsranks, kms$centers)
[Package msos version 1.2.0 Index]