sort_silhouette {msos} | R Documentation |
Sort the silhouettes by group
Description
Sorts the silhouettes, first by group, then by value, preparatory to plotting.
Usage
sort_silhouette(sil, cluster)
Arguments
sil |
The |
cluster |
The |
Value
The n
-vector of sorted silhouettes.
See Also
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)
ssil <- sort_silhouette(sil, kms$cluster)
[Package msos version 1.2.0 Index]