R中DBSCAN的聚类中心平均值?
使用fpc
包中的dbscan
我能够得到以下输出:
dbscan Pts=322 MinPts=20 eps=0.005
0 1
seed 0 233
border 87 2
total 87 235
但我需要找到聚类中心(具有大多数种子的聚类的平均值)。谁能告诉我如何继续这个操作?
Using dbscan
in package fpc
I am able to get an output of:
dbscan Pts=322 MinPts=20 eps=0.005
0 1
seed 0 233
border 87 2
total 87 235
but I need to find the cluster center (mean of cluster with most seeds). Can anyone show me how to proceed with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要了解,当 DBSCAN 寻找任意形状的簇时,平均值可能会远远超出簇的范围。因此,研究 DBSCAN 集群的方法并不明智。
You need to understand that as DBSCAN looks for arbitrarily shaped clusters, the mean can be well outside of the cluster. Looking at means of DBSCAN clusters therefore is not really sensible.
只需使用您选择的集群 ID 索引回原始数据即可。然后您可以轻松地对子集进行任何您想要的进一步处理。这是一个例子:
Just index back into the original data using the cluster ID of your choice. Then you can easily do whatever further processing you want to the subset. Here is an example: