python-cluster icon indicating copy to clipboard operation
python-cluster copied to clipboard

Simple clustering library for python.

Results 3 python-cluster issues
Sort by recently updated
recently updated
newest added

# New functionalities for High Dimensionality problem and improved performance: The improvements achieved on cluster library are related with : - High Dimensionality problem - improved performance, making clustering linear...

I thought about plotting the result of a hierarchical clustering by using matplotlib.pyplot. Some nice example plots can be found e.g. at https://joernhees.de/blog/2015/08/26/scipy-hierarchical-clustering-and-dendrogram-tutorial/ . The distance matrix described as a...

The following code gives an error: ``` from cluster import KMeansClustering from os import urandom from pprint import pprint from random import randint class ObjectWithMetadata(object): def __init__(self, value): self.value =...

bug