Nothing
pIa <-
function(phyl, comm, exponent = 2, tol = 1e-8){
if(is.vector(comm))
return(sum(aptree(phyl, comm, exponent, tol)))
else{
res <- colSums(aptree(phyl, comm, exponent, tol))
tab <- cbind.data.frame(res)
names(tab) <- "diversity"
rownames(tab) <- rownames(comm)
return(tab)
}
}
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.