We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 2d8db70Copy full SHA for 2d8db70
README.md
@@ -0,0 +1,20 @@
1
+# ClusteringAPI
2
+
3
+A common interface for clustering data.
4
+The interface is composed of the abstract types:
5
6
+- `ClusteringAlgorithm`
7
+- `ClusteringResult`
8
9
+which interplay with the functions:
10
11
+- `cluster`
12
+- `cluster_number`
13
+- `cluster_labels`
14
15
+To create new clustering algorithms simply create a new
16
+subtype of `ClusteringAlgorithm` that extends `cluster`
17
+so that it returns a new subtype of `ClusteringResult`
18
+which itself extends `cluster_labels`.
19
20
+For more, see the docstring of `cluster`.
0 commit comments