treeman (version 1.1.3)

setAge: Set the age of a tree

Description

Return a tree with the age altered.

Usage

setAge(tree, val)

Arguments

tree

TreeMan object

val

new age

Details

Use this function to change the age of a tree. For example, you might want to convert the tree so that its age equals 1. This function will achieve that by modiyfing every branch, while maintaining their relative lengths.

See Also

setPD https://github.com/DomBennett/treeman/wiki/set-methods

Examples

Run this code
# NOT RUN {
library(treeman)
tree <- randTree(10)
tree <- setAge(tree, val=1)
summary(tree)
# }

Run the code above in your browser using DataLab