Nothing
## generate data
library(phyloregion)
library(betapart)
library(ape)
library(Matrix)
tree <- read.tree(text ="((t1:1,t2:1)N2:1,(t3:1,t4:1)N3:1)N1;")
com <- matrix(c(1,0,1,1,0,0,
1,0,0,1,1,0,
1,1,1,1,1,1,
0,0,1,1,0,1), 6, 4,
dimnames=list(paste0("g",1:6), tree$tip.label))
com_sparse <- Matrix(com, sparse=TRUE)
pd_bioregion <- PD(com_sparse, tree)
pbc_phyloregion <- phylobeta_core(com_sparse, tree)
pbc_betapart <- phylo.betapart.core(com, tree)
# check if betapart and phyloregion are equal
expect_equal(phylo.beta.multi(pbc_phyloregion),
phylo.beta.multi(pbc_betapart))
expect_equivalent(phylo.beta.pair(pbc_phyloregion),
phylo.beta.pair(pbc_betapart))
# test pd compare with picante
# test
pb_phyloregion <- phylobeta(com_sparse, tree)
data(africa)
sparse <- africa$comm
long <- sparse2long(sparse)
sparse2 <- long2sparse(long)
expect_equal(nrow(sparse), nrow(sparse2))
set.seed(42)
ind <- sample(60823, 1000, replace = TRUE)
long_ind <- long[ind,]
sparse_ind <- long2sparse(long_ind)
long_ind2 <- sparse2long(sparse_ind)
expect_equal(nrow(long_ind), nrow(long_ind2))
#check if beta_core is equal to betapart.core
M_sparse <- africa$comm
M_dense <- as(M_sparse, "matrix")
bc_dense <- betapart.core(M_dense)
bc_sparse <- beta_core(M_sparse)
# first element is data matrix, so we ignore it
expect_equal(bc_sparse[-1], bc_dense[-1])
# unifrac
dm_unifrac <- phyloregion::unifrac(com, tree)
if(requireNamespace("picante")){
expect_inherits(dm_unifrac, "dist")
expect_equivalent(dm_unifrac, picante::unifrac(com, tree))
}
# evol_distinct vs evol.distinct
if(requireNamespace("picante")){
tree <- rcoal(100)
expect_equivalent(evol_distinct(tree), picante::evol.distinct(tree)[,2])
expect_equivalent(evol_distinct(tree, "fair"),
picante::evol.distinct(tree, "fair")[,2])
}
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.