sklearn.cluster.cluster_optics_dbscan

sklearn.cluster.cluster_optics_dbscan(*, reachability, core_distances, ordering, eps)

[源码]

对任意epsilon执行DBSCAN提取

聚类提取是在线性时间内进行的。请注意,只有当eps接近max_eps时,label_才会接近具有类似设置的epsDBSCAN

参数 说明
reachability array, shape (n_samples,)
通过OPTICS计算的可达距离(reachability_)
core_distances array, shape (n_samples,)
点成为核心的距离(core_distances_)
ordering array, shape (n_samples,)
OPTICS排序点的索引(ordering_)
eps float
DBSCAN 的pes参数。必须设置为<max_eps
如果epsmax_eps彼此接近,结果将接近DBSCAN算法。
返回值 说明书
labels_ array, shape (n_samples,)
估计的标签。

sklearn.cluster.cluster_optics_dbscan使用示例