I am trying to make a silhouette plot for a k-means clustering, but the bars are almost invisble. How can I make this chart legible?
Example code:
require(cluster)
X <- EuStockMarkets
kmm <- kmeans(X, 8)
D <- daisy(X)
plot(silhouette(kmm$cluster, D), col=1:8)
Example output: