Setup DBSCANConfig
Arguments
- eps
Float: Radius of neighborhood.
- min_points
Integer: Minimum number of points in a neighborhood to form a cluster.
- weights
Numeric vector: Weights for data points.
- border_points
Logical: If TRUE, assign border points to clusters.
- search
Character: Nearest neighbor search strategy: "kdtree", "linear", or "dist".
- bucket_size
Integer: Size of buckets for k-dtree search.
- split_rule
Character: Rule for splitting clusters: "SUGGEST", "STD", "MIDPT", "FAIR", "SL_MIDPT", "SL_FAIR".
- approx
Logical: If TRUE, use approximate nearest neighbor search.
Examples
dbscan_config <- setup_DBSCAN(eps = 0.5, min_points = 5L)
dbscan_config
#> <DBSCAN ClusteringConfig>
#> eps: <nmr> 0.50
#> min_points: <int> 5
#> weights: <NUL> NULL
#> border_points: <lgc> TRUE
#> search: <chr> kdtree
#> bucket_size: <int> 100
#> split_rule: <chr> SUGGEST
#> approx: <lgc> FALSE