Nothing
dematrify <- function (comm, filename, sep = ",", thresh = 0)
{
tmp <- which(comm > thresh, arr.ind = TRUE)
samples <- row.names(tmp)
species <- names(comm)[tmp[, 2]]
abund <- comm[tmp]
ord <- order(tmp[, 1], tmp[, 2])
result <- data.frame(samples[ord], species[ord], abund[ord])
names(result) <- c("sample", "species", "abundance")
attr(result,'call') <- match.call()
attr(result,'comm') <- deparse(substitute(comm))
attr(result,'thresh') <- thresh
if (missing(filename)) {
return(result)
} else {
write.table(file = filename, result, sep = sep, quote = FALSE,
row.names = FALSE)
}
}
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.