The Algorithms logo
算法
关于我们捐赠

DBSCAN 聚类

A
library(dbscan)
cl <- dbscan(iris[,-5], eps = .5, minPts = 5)
plot(iris[,-5], col = cl$cluster)