nmds.mst {fossil} | R Documentation |
Creating NMDS plots with overlain Minimum Spanning Trees
Description
This is a helper function which will plot an NMDS with an overlain MST
Usage
nmds.mst(nmds, mst, ...)
Arguments
nmds |
an NMDS created using the ecodist program |
mst |
a minimum spanning tree or network (binary matrix) |
... |
arguments to be passed to the |
Details
At the moment, the function requires an NMDS created using the ecodist program, howver the minimum spanning tree can be any one which creates a binary matrix showing connections (ie dino.mst
).
Value
Plots a non-metric multidimensional scaling plot with an overlain minimum spanning tree showing connections between the points.
Author(s)
Matthew Vavrek
See Also
Examples
## Not run:
#use fdata.mat as dataset, and use the \code{ecodist} package for the \code{nmds()} function
data(fdata.mat)
z <- ecol.dist(fdata.mat)
a <- dino.msn(z)
b <- nmds(z)
nmds.mst(b, a)
## End(Not run)
[Package fossil version 0.4.0 Index]