Autoplot silhouette instances
# S3 method for class 'silhouette'
autoplot(
object,
colour = "red",
linetype = "dashed",
size = 0.5,
bar.width = 1,
...
)
ggplot
if (FALSE) { # \dontrun{
model = cluster::pam(iris[-5], 3L)
sil = cluster::silhouette(model)
autoplot(sil)
autoplot(cluster::silhouette(cluster::clara(iris[-5], 3)))
autoplot(cluster::silhouette(cluster::fanny(iris[-5], 3)))
model = stats::kmeans(iris[-5], 3)
sil = cluster::silhouette(model$cluster, stats::dist(iris[-5]))
autoplot(sil)
} # }