Tip rates

In this vignette we will calculate the diversification rates at the tips of the phylogeny.

Tree file

First, we load the necessary modules and read in the tree file.

using Pesto
using CairoMakie

phy = readtree(Pesto.path("primates.tre"))
ρ = 0.635
primates = SSEdata(phy, ρ)

Model setup

Let's use the standard Pesto.jl model again, with LogNormal quantiles and maximum-likelihood shift rate ($\eta$).

model, rates = pesto(primates)

Tip rates

In order to calculate the values of the rates at the present, we need to evalute the following expressions

\[ \begin{aligned} \lambda_\text{tip} &= \mathbf{S}(t=0)^\top \boldsymbol{\lambda}\\ \mu_\text{tip} &= \mathbf{S}(t=0)^\top \boldsymbol{\mu}\\ r_\text{tip} &= \mathbf{S}(t=0)^\top (\boldsymbol{\lambda}-\boldsymbol{\mu})\\ \epsilon_\text{tip} &= \mathbf{S}(t=0)^\top (\boldsymbol{\mu} \oslash \boldsymbol{\lambda}), \end{aligned}\]

where $\mathbf{S}(t=0)$ are the posterior state probabilities at time $t=0$, i.e. the present. We can compute the tip rates conveniently with the tip_rates() function, which gives a DataFrame as a result.

df = tip_rates(model, primates)
df[1:5,:]
5×5 DataFrame
Rowlambdamunetdivrelextspecies
Float64Float64Float64Float64String
10.2260490.1387920.08725720.609653Galago_matschiei
20.2266310.1388250.08780550.608545Euoticus_pallidus
30.2266310.1388250.08780550.608545Euoticus_elegantulus
40.2255370.1386060.08693120.609867Galagoides_zanzibaricus
50.2255370.1386060.08693120.609867Galagoides_demidoff

Distribution

If we plot the tip rates as a histogram, we can see that the primates tips are bimodally distributed. The high-rate species are the Old World Monkeys, and the low-rate species is everything else in the tree.

f = Figure(resolution = (300, 600))

axs = []
colors = [:blue, :red, :green, :orange]
for (i, rate) in enumerate([:lambda, :mu, :netdiv, :relext])
    ax = Axis(f[i,1],
        xgridvisible = false,
        ygridvisible = false,
        xlabel = string("Tip rate (", rate, ")"),
        ylabel = "Frequency")

    hist!(ax, df[!,rate], bins=30, color = colors[i])
end
rowgap!(f.layout, 5.0)
f
Example block output