as.treeshape is a generic function which converts an tree object into an object of class "treeshape". There is currently a single method for this generic function.
Usage
# S3 method for phylo
as.treeshape(x, model, p, ...)
Arguments
x
An object to be converted into another class. Currently, it must be an object of class "phylo".
model
The model to use when the tree to convert is not binary. If NULL (default), the tree is not converted. One of "biased", "pda", "aldous" or "yule" character string.
p
The parameter for the model "biased".
...
Further arguments to be passed to or from other methods.
Value
An object of class "treeshape" or an object of classes "treeshape" and "randomized.treeshape" if the original tree was not binary.
Details
as.treeshape can convert trees that are not binary. When trying to convert a tree with polytomies, this function may either reject the tree (if model=NULL) or simulate the tree. The polytomy is replaced by a randomized subtree with n tips where n is the size of the polytomy. The subtree is simulated using the PDA, Yule, Aldous or biased model.
# NOT RUN {library(ape)
data(bird.orders)
## Data set from APEplot(bird.orders)
## "treeshape" conversiontree=as.treeshape(bird.orders)
plot(tree)
summary(tree)
# }