hierarchical-clustering Questions
4
Solved
I want to color my clusters with a color map that I made in the form of a dictionary (i.e. {leaf: color}).
I've tried following https://joernhees.de/blog/2015/08/26/scipy-hierarchical-clustering-...
Heida asked 1/7, 2016 at 21:2
2
I want to use hierarchical cluster analysis to get the optimal number (K) of clusters automatically, then apply this K to K-means clustering in python.
After studying many article, I know some me...
Overawe asked 5/6, 2018 at 8:10
3
Solved
I have a set of genes which have been aligned and clustered based on DNA sequences, and I have this set of genes in a Newick tree representation (https://en.wikipedia.org/wiki/Newick_format). Does ...
Cornelie asked 24/6, 2015 at 18:5
1
(This post is continuation of my previous question on divisive hierarchical clustering algorithm.)
The problem is how to implement this algorithm in Python (or any other language).
Algorithm desc...
Cubit asked 26/8, 2015 at 14:12
2
Solved
Is is possible to select the number of clusters in the HDBSCAN algorithm in python? Or the only way is to play around with the input parameters such as alpha, min_cluster_size?
Thanks
UPDATE:
her...
Street asked 15/1, 2018 at 18:52
1
Solved
I'm confused about the difference between the following parameters in HDBSCAN
min_cluster_size
min_samples
cluster_selection_epsilon
Correct me if I'm wrong.
For min_samples, if it is set to 7, t...
Vegetarian asked 9/6, 2021 at 5:22
2
I am trying to create program that cluster documents using hierarchical agglomerative clustering, and the output of the program depends on cutting the dendrogram at such a level that I get maximum ...
Dunaj asked 11/3, 2014 at 6:13
2
Solved
Have anyone heard about any package or functionality that works the same as the dist{stats} function from R which creates the
distance matrix that is computed by using the specified distance me...
Phosphor asked 2/4, 2015 at 16:22
2
I'm trying to learn how to use dendrograms in Python using SciPy . I want to get clusters and be able to visualize them; I heard hierarchical clustering and dendrograms are the best way.
How can ...
Cloyd asked 9/4, 2016 at 23:5
6
Solved
I have a matrix data, and want to visualize it with heatmap. The rows are species, so I want visualize the phylogenetic tree aside the rows and reorder the rows of the heatmap according the tree. I...
Minnieminnnie asked 1/3, 2013 at 8:8
3
Solved
Given a distance matrix, with similarity between various professors :
prof1 prof2 prof3
prof1 0 0.8 0.9
prof2 0.8 0 0.2
prof3 0.9 0.2 0
I need to perform hierarchical clustering on this data...
Maneating asked 16/11, 2017 at 3:34
2
Solved
I created a heatmap based on spearman's correlation matrix using seaborn clustermap as folowing: I want to paint the dendrogram. I want the dendrogram to look like this:
dendrogram
but on the heatm...
Debbydebee asked 25/5, 2020 at 11:27
4
Solved
In order to clusterize a set of time series I'm looking for a smart distance metric.
I've tried some well known metric but no one fits to my case.
ex: Let's assume that my cluster algorithm extra...
Magnifico asked 29/1, 2018 at 9:13
3
Solved
So I am using fastcluster with SciPy to do agglomerative clustering. I can do dendrogram to get the dendrogram for the clustering. I can do fcluster(Z, sqrt(D.max()), 'distance') to get a pretty go...
Vere asked 12/7, 2013 at 14:13
1
I want to cluster Javascript objects by one of their string key values (description). I already tried multiple solutions and would like some guidance on how to approach the problem.
What I want:
L...
Jaejaeger asked 15/2, 2017 at 9:13
1
Solved
I am using hierarchical clustering from seaborn.clustermap to cluster my data. This works fine to nicely visualize the clusters in a heatmap. However, now I would like to extract all row values tha...
Verona asked 10/6, 2019 at 12:45
2
Solved
I'm making a clustered map with mapbox supercluster. The problem I face is that clusters are not at the correct location. For example I only have dogs in the netherlands but when zoomed out they ar...
Sylph asked 31/8, 2019 at 13:19
5
I work on hierarchical agglomerative clustering on large amounts of multidimensional vectors, and I noticed that the biggest bottleneck is the construction of the distance matrix. A naive implement...
Pfeifer asked 28/6, 2012 at 18:56
1
Solved
I have a large (106x106) correlation matrix in pandas with the following structure:
+---+-------------------+------------------+------------------+------------------+------------------+-----------...
Whiney asked 21/2, 2019 at 20:22
2
Solved
I have a numpy text file array at: https://github.com/alvations/anythingyouwant/blob/master/WN_food.matrix
It's a distance matrix between terms and each other, my list of terms are as such: http:/...
Spiritualist asked 9/12, 2014 at 18:54
3
My objective is to cluster words based on how similar they are with respect to a corpus of text documents. I have computed Jaccard Similarity between every pair of words. In other words, I have a s...
Stem asked 26/4, 2013 at 22:19
2
Solved
I'm trying to use agglomerative clustering with a custom distance metric (ie affinity) since I'd like to cluster a sequence of integers by sequence similarity and not something like the euclidean d...
Carmelinacarmelita asked 19/12, 2018 at 10:20
2
I am looking for a clustering dataset with "ground truth" labels for some known natural clustering, preferably with high dimensionality.
I found some good candidates here (http://cs.joensuu.fi/sip...
Bumgarner asked 24/3, 2014 at 20:28
1
Here is my resulting plot below but I would like it to look like the truncated dendrograms in astrodendro such as this:
There is also a really cool looking dendrogram from this paper that I woul...
Petulia asked 13/6, 2018 at 21:35
1
Solved
How do I draw a line in a dendrogram that corresponds the best K for a given criteria?
Like this:
Lets suppose that this is my dendrogram, and the best K is 4.
data("mtcars")
myDend <- as.d...
Dip asked 4/3, 2018 at 2:20
1 Next >
© 2022 - 2024 — McMap. All rights reserved.