A list of data to perform the clustering on, like [[1], [2]], [[1, 2], [[3, 4]] or more dimensions `[[1, 2, 3, 4...],[...]].
[[1], [2]]
[[1, 2], [[3, 4]]
dbscan related parameters.
labels is the returned list of clustered group labels. A label of -1 indicates the point is noise
A list of data to perform the clustering on, like
[[1], [2]]
,[[1, 2], [[3, 4]]
or more dimensions `[[1, 2, 3, 4...],[...]].