Returns points which were assigned to clusters
Returns points which were assigned to clusters
Returns only noise points
Returns only noise points
Predicts which cluster a point would belong to
Predicts which cluster a point would belong to
A org.alitouka.spark.dbscan.PointCoordinates for which you want to make a prediction
If the point can be assigned to a cluster, then this cluster's ID is returned. If the point appears to be a noise point, then org.alitouka.spark.dbscan.DbscanModel.NoisePoint is returned. If the point is surrounded by so many noise points that they can constitute a new cluster, then org.alitouka.spark.dbscan.DbscanModel.NewCluster is returned
Represents results calculated by DBSCAN algorithm.
This object is returned from org.alitouka.spark.dbscan.Dbscan.run method. You cannot instantiate it directly