mst {edmcr} | R Documentation |
mst
Compute a minimum spanning tree using Prim's algorithm
mst(D)
D |
A distance matrix |
MST a data frame object of 3 columns containing the parent nodes, child nodes, and corresponding weight of the MST edge
X <- runif(10,0,1)
Y <- runif(10,0,1)
D <- dist(cbind(X,Y))
mst(as.matrix(D))