Package com.imsl.stat
Class DBSCAN.DBSCANParams
java.lang.Object
com.imsl.stat.DBSCAN.DBSCANParams
- All Implemented Interfaces:
Serializable,Cloneable
- Enclosing class:
- DBSCAN
Class that holds the minimum number of points and epsilon parameters of
the
DBSCAN algorithm.
Used by method DBSCAN.computeDBSCANParams(double) to return
the minimum number of points and epsilon parameters. These estimates can
be used as arguments for method DBSCAN.compute(int, double).
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionclone()Clones aDBSCANParamsobject.doubleReturns the epsilon radius.intReturns the minimum number of points in the epsilon neighborhood of a core point.
-
Method Details
-
getMinPoints
public int getMinPoints()Returns the minimum number of points in the epsilon neighborhood of a core point.- Returns:
- an
int, the minimum number of points in the epsilon neighborhood of an observation that qualifies the point for a core point
-
getEpsilon
public double getEpsilon()Returns the epsilon radius.- Returns:
- a
double, the epsilon radius used in theDBSCANalgorithm
-
clone
Clones aDBSCANParamsobject.
-