Questions tagged [agglomerative]
The agglomerative tag has no summary.
3 questions
1
vote
1
answer
220
views
ggplot2 for Cluster analysis (non-readible row names)
I have made a cluster analysis and ended up with dendrogram; however the row names are not readible (made a red rectangle). May I ask if there is way to adjust it?
...
1
vote
1
answer
1k
views
Understanding hierarchical clustering features importance
I made a hierarchical clustering with scikit :
selected_model = AgglomerativeClustering(n_clusters=8)
hierarchical_clustering8 = selected_model.fit_predict(answers)
...
0
votes
1
answer
294
views
Unsupervised Hierarchical Agglomerative Clustering
I've read a number of papers where the authors talk about "Unsupervised Hierarchical Agglomerative Clustering". They seem to imply that the algorithm determines the number of clusters based ...