The hcluster tag has no wiki summary.
0
votes
1answer
95 views
How to build & install hcluster?
I download hcluster from http://pypi.python.org/pypi/hcluster , then unzip to a folder , then type "python setup.py install" . It seems OK for it shows:
Z:\>python setup.py install
running ...
2
votes
0answers
165 views
Converting ndarray generated by hcluster into a Newick string for use with ete2 package
I have a list of vectors created by running:
import hcluster
import numpy as np
from ete2 import Tree
vecs = [np.array(i) for i in document_list]
where document_list is a collection of web ...
3
votes
1answer
1k views
python hcluster, distance matrix and condensed distance matrix
I'm using the module hcluster to calculate a dendrogram from a distance matrix. My distance matrix is an array of arrays generated like this:
import hcluster
import numpy as np
mols = (..a list of ...
1
vote
1answer
166 views
Please recommend a clustering toolkit [closed]
I need to cluster a large quantity of texts, so please recommend a free toolkit to do it. Features I need includes: hierarchical clustering, sparse matrix representation, a cut-off threshold to stop.
...
2
votes
1answer
612 views
How to use sparse matrix in python hcluster?
I'm trying to use hcluster library in python. I have no enough python knowledges to use sparse matrix in hcluster. Please help me anybody. So, that what I'm doing:
import os.path
import numpy
import ...
0
votes
1answer
331 views
Can not install hcluster from pypi under python 2.6 on xp
I am using the setup.py file supplied with hcluster with the following lines added:
sys.path.append("c:\\Program Files\\Python26\\Lib\\site-packages\\hcluster-0.2.0")
sys.path.append("c:\\Program ...
7
votes
1answer
591 views
problem with hierarchical clustering in Python
I am doing a hierarchical clustering a 2 dimensional matrix by correlation distance metric (i.e. 1 - Pearson correlation). My code is the following (the data is in a variable called "data"):
from ...