Nothing
### Function to find distances from each sampling unit to each centroid
### for vegan::betadisper result.
### x (input): result object from vegan::betadisper
###
### Originally published in
### https://stackoverflow.com/questions/77391007/ and in github issue
### #606
`betadistances` <-
function(x, ...)
{
cnt <- x$centroids
coord <- x$vectors
pos <- which(x$eig >= 0)
neg <- which(x$eig < 0)
d <- apply(cnt[,pos], 1,
function(z) rowSums(sweep(coord[,pos], 2, z)^2))
if (length(neg))
d <- d - apply(cnt[, neg], 1,
function(z) rowSums(sweep(coord[,neg], 2, z)^2))
d <- as.data.frame(sqrt(d))
nearest <- levels(x$group)[apply(d, 1, which.min)]
out <- data.frame("group" = x$group, "nearest" = nearest, d)
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.