mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
Python-cluster is a simple package that allows to create several groups (clusters) of objects from a list. It's meant to be flexible and able to cluster any object. To ensure this kind of flexibility, you need not only to supply the list of objects, but also a function that calculates the similarity between two of those objects. For simple datatypes, like integers, this can be as simple as a subtraction, but more complex calculations are possible. WWW: https://pypi.python.org/pypi/cluster PR: 211052 Submitted by: Danilo G. Baio <dbaio@bsd.com.br>
9 lines
502 B
Text
9 lines
502 B
Text
Python-cluster is a simple package that allows to create several
|
|
groups (clusters) of objects from a list. It's meant to be flexible
|
|
and able to cluster any object. To ensure this kind of flexibility,
|
|
you need not only to supply the list of objects, but also a function
|
|
that calculates the similarity between two of those objects.
|
|
For simple datatypes, like integers, this can be as simple as a
|
|
subtraction, but more complex calculations are possible.
|
|
|
|
WWW: https://pypi.python.org/pypi/cluster
|