| Interface | Description |
|---|---|
| SplitDetectionMode |
Given a vector, tell me the split
|
| Class | Description |
|---|---|
| ClusterTestDataLoader |
Load clusters from http://people.cs.nctu.edu.tw/~rsliang/dbscan/testdatagen.html
|
| ClusterTestDataLoader.TestStats |
Test details
|
| DoubleKDTreeClusterer | |
| KDTreeClusters | |
| SplitDetectionMode.MEAN |
Use the mean to split
|
| SplitDetectionMode.MEDIAN |
Splits clusters becuase they don't have exactly the same value!
|
| SplitDetectionMode.OPTIMISED |
minimise for y: (y' * (D - W) * y) / ( y' * D * y );
s.t.
|
| SplitDetectionMode.VARIABLE_MEDIAN |
Find the median, attempt to find a value which keeps clusters together
|