powered by
mst Compute a minimum spanning tree using Prim's algorithm
mst
mst(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
# NOT RUN { X <- runif(10,0,1) Y <- runif(10,0,1) D <- dist(cbind(X,Y)) mst(as.matrix(D)) # }
Run the code above in your browser using DataLab