Python中没有包的分层聚类

问题描述 投票:0回答:1

我正在尝试使用python查看/编写用于分层集群的代码。但是,在我看来,到处都在使用软件包或库,例如scikit-learn。我想看看不使用此包的群集的原始代码。有人可以指出我的资源方向吗?

python hierarchical-clustering
1个回答
0
投票

因为您只想知道软件包的资源,

[[Herarchical Clustering参考指南] [1] [1]:https://docs.scipy.org/doc/scipy/reference/generated/scipy.cluster.hierarchy.linkage.html

[分层聚类的功能] [1] [1]:https://docs.scipy.org/doc/scipy/reference/cluster.hierarchy.html

[[参数] [1] [1]:https://docs.scipy.org/doc/scipy/reference/generated/scipy.cluster.hierarchy.dendrogram.html

[[更多参考] [1] [1]:https://docs.scipy.org/doc/scipy-0.16.0/reference/cluster.hierarchy.html

这些链接也包含其他出版物的参考文档。您还必须了解它们包含层次聚类方程式,您必须自己用python重写。

我希望它会有所帮助。继续编码!

© www.soinside.com 2019 - 2024. All rights reserved.