autoplot.silhouette {ggfortify} | R Documentation |
Autoplot silhouette instances
## S3 method for class 'silhouette' autoplot( object, colour = "red", linetype = "dashed", size = 0.5, bar.width = 1, ... )
object |
Silhouette instance |
colour |
reference line color |
linetype |
reference line type |
size |
reference line size |
bar.width |
bar width |
... |
other arguments passed to methods |
ggplot
## Not run: 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) ## End(Not run)