本文整理汇总了Golang中github.com/soniakeys/cluster.DistanceMatrix.NeighborJoin方法的典型用法代码示例。如果您正苦于以下问题:Golang DistanceMatrix.NeighborJoin方法的具体用法?Golang DistanceMatrix.NeighborJoin怎么用?Golang DistanceMatrix.NeighborJoin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/soniakeys/cluster.DistanceMatrix
的用法示例。
在下文中一共展示了DistanceMatrix.NeighborJoin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ExampleDistanceMatrix_NeighborJoin
func ExampleDistanceMatrix_NeighborJoin() {
d := cluster.DistanceMatrix{
{0, 23, 27, 20},
{23, 0, 30, 28},
{27, 30, 0, 30},
{20, 28, 30, 0},
}
tree, wt := d.NeighborJoin()
fmt.Println("n1 n2 weight")
for n, to := range tree.LabeledAdjacencyList {
for _, h := range to {
fmt.Printf("%d %2d %6.3f\n", n, h.To, wt[h.Label])
}
}
// Output:
// n1 n2 weight
// 0 5 8.000
// 1 4 13.500
// 2 4 16.500
// 3 5 12.000
// 4 5 2.000
// 4 1 13.500
// 4 2 16.500
// 5 3 12.000
// 5 0 8.000
// 5 4 2.000
}