Top "Hierarchical-clustering" questions

Hierarchical clustering is a clustering technique that generates clusters at multiple hierarchical levels, thereby generating a tree of clusters.

differences in heatmap/clustering defaults in R (heatplot versus heatmap.2)?

I'm comparing two ways of creating heatmaps with dendrograms in R, one with made4's heatplot and one with gplots …

r cluster-analysis heatmap hierarchical-clustering bioconductor
Tutorial for scipy.cluster.hierarchy

I'm trying to understand how to manipulate a hierarchy cluster but the documentation is too ... technical?... and I can't understand …

python scipy hierarchical-clustering
Clustering words based on Distance Matrix

My objective is to cluster words based on how similar they are with respect to a corpus of text documents. …

python cluster-computing scikit-learn hierarchical-clustering
Text clustering with Levenshtein distances

I have a set (2k - 4k) of small strings (3-6 characters) and I want to cluster them. Since I …

r matlab cluster-analysis levenshtein-distance hierarchical-clustering
Use Distance Matrix in scipy.cluster.hierarchy.linkage()?

I have a distance matrix n*n M where M_ij is the distance between object_i and object_j. …

python scipy hierarchical-clustering
How to get flat clustering corresponding to color clusters in the dendrogram created by scipy

Using the code posted here, I created a nice hierarchical clustering: Let's say the the dendrogram on the left was …

python cluster-analysis scipy hierarchical hierarchical-clustering
Hierarchical clustering of 1 million objects

Can anyone point me to a hierarchical clustering tool (preferable in python) that can cluster ~1 Million objects? I have tried …

python machine-learning cluster-analysis data-mining hierarchical-clustering
spatial clustering in R (simple example)

I have this simple data.frame lat<-c(1,2,3,10,11,12,20,21,22,23) lon<-c(5,6,7,30,31,32,50,51,52,53) data=data.frame(lat,lon) The idea is …

r geospatial spatial hierarchical-clustering
Extracting clusters from seaborn clustermap

I am using the seaborn clustermap to create clusters and visually it works great (this example produces very similar results). …

python cluster-analysis hierarchical-clustering seaborn dendrogram
Cutting SciPy hierarchical dendrogram into clusters via a threshold value

I'm trying to use SciPy's dendrogram method to cut my data into a number of clusters based on a threshold …

python scipy hierarchical-clustering dendrogram