Is it correct to add the point to the noise at this step?
if len(neighborPts) < minPoints {
noise = append(noise, i)
}
As far as I understand, there may be a situation where a point from the noise will be added to the cluster later. Thus, the total number of points in clusters + noise will be greater than the total number of points.
Is it correct to add the point to the noise at this step?
As far as I understand, there may be a situation where a point from the noise will be added to the cluster later. Thus, the total number of points in clusters + noise will be greater than the total number of points.