dbscan_cluster
Find clusters of any shape and identify outliers using density-based DBSCAN. Automatically standardizes features and labels noise as -1.
Instructions
DBSCAN clustering. Density-based clustering that finds arbitrarily shaped clusters. Does not require specifying n_clusters. Labels outliers as -1. Features are auto-standardized. Use when clusters have irregular shapes or when you need outlier detection. Example: dbscan_cluster(columns=["Revenue","Weight"], eps=0.5, min_samples=5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eps | No | ||
| columns | Yes | ||
| df_name | No | ||
| min_samples | No | ||
| cluster_column | No | cluster |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |