phylo2p: Convert phylo object on a list with 3 vectors: waiting times,...

Usage Arguments Examples

Usage

1
phylo2p(tree)

Arguments

tree

Object of class phylo

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (tree)
{
    ltt = ltt.plot.coords(tree)
    t = diff(ltt[, 1])
    ltt = ltt[-1, ]
    n = ltt[, 2]
    E = diff(n)
    n = n[-length(n)]
    E[E == -1] = 0
    return(list(t = t, E = E, n = n))
  }

franciscorichter/dmea documentation built on May 16, 2019, 1:54 p.m.