Run Phylocom's bladj from R
Details
uses phylocomr::ph_bladj()
under the hood
Examples
if (FALSE) { # \dontrun{
library("phylocomr")
# make an ages data.frame
ages_df <- data.frame(
a = c('malpighiales','eudicots','ericales_to_asterales','plantaginaceae',
'malvids', 'poales'),
b = c(81, 20, 56, 76, 47, 71)
)
# read phylogeny file as a string
phylo_file <- system.file("examples/phylo_bladj", package = "phylocomr")
phylo_str <- readLines(phylo_file)
# Run Bladj, returns phylo object
(x <- rbladj(tree = phylo_str, ages = ages_df))
# load ape and plot tree
library(ape)
plot(x)
} # }