euclidify | R Documentation |
Calculates the nearest Euclidean space representation of a dissimilarity object by iterating the transitive closure of the triangle inequality
euclidify(dis,upper=FALSE,diag=FALSE)
as.euclidean(dis,upper=FALSE,diag=FALSE)
dis |
a distance or dissimilarity object returned from |
upper |
a logical switch to control whether to return the lower triangle (upper=FALSE) or upper triangle (upper=TRUE) of the distance matrix |
diag |
a logical switch to control whether to return the diagonal of the distance matrix |
Implements a constrained iteration of the transitive closure of Pythagoras' theorem, such that the squared distance between any two objects is less than or equal to the sum of the squared distances from the two objects to all possible third objects.
An object of class ‘dist’
Many multivariate statistical methods are designed for euclidean spaces, and yet the direct calculation of euclidean distance is often inappropriate due to problems with joint absences. euclidify takes any dissimilarity matrix and converts it to the closest euclidean representation, generally to avoid negative eigenvalues in an eigenanalysis of the matrix.
David W. Roberts droberts@montana.edu
metrify
data(bryceveg) # returns a vegetation data.frame
dis.bc <- dsvdis(bryceveg,'bray/curtis') # calculate a Bray/Curtis
# dissimilarity matrix
dis.euc <- euclidify(dis.bc) # calculate the nearest euclidean
# representation
## Not run: plot(dis.bc,dis.euc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.