stepdist | R Documentation |
Solves for the shortest-path step-across distance for a given distance matrix
stepdist(dis,alpha)
dis |
a distance or dissimilarity object of class ‘dist’ |
alpha |
a threshold distance to establish the step-across |
The function takes the dist object and converts all values >= alpha to 9999.9 and then solves for new distances by calculating the transitive closure of the triangle inequality.
an object of class ‘dist’
The ‘dsvdis’ function includes a step-across function in the initial calculation of a distance or dissimilarity matrix. This function simply allows the conversion to take place at a later time, or on distance metrics that ‘dsvdis’ doesn't support.
David W. Roberts droberts@montana.edu
data(bryceveg)
dis.bc <- dsvdis(bryceveg,'bray')
dis.bcx <- stepdist(dis.bc,1.00)
disana(dis.bcx)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.