View source: R/checkValidPhylo.R
checkValidPhylo | R Documentation |
This function takes as single argument an object (phy), checks its elements, and prints a diagnostic. All problems are printed with a label: FATAL (will likely cause an error or a crash) or MODERATE (may cause some problems).
This function is mainly intended for developers creating
"phylo"
objects from scratch.
checkValidPhylo(phy)
phy |
an object of class |
NULL.
Emmanuel Paradis
tr <- rtree(3)
checkValidPhylo(tr)
tr$edge[1] <- 0
checkValidPhylo(tr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.