nmds.mst: Creating NMDS plots with overlain Minimum Spanning Trees

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This is a helper function which will plot an NMDS with an overlain MST

Usage

1
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 plot function

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

dino.msn, dino.mst

Examples

1
2
3
4
5
6
7
8
9
## 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)

fossil documentation built on March 23, 2020, 5:06 p.m.