Description Usage Arguments Details Value References Examples
Calculates expected Phylogenetic Diversity (PD) with and without successful management of a list of threatened species. Note that this function uses that version of PD that always includes the path to the root of the tree.
1 2 3 4 5 6 7 8 | phylodiv.expect.secured(
phy,
species = phy$tip.label,
managed = species,
survival,
feasibility = 1,
success = 0.95
)
|
phy |
is a rooted phylogenetic tree with branch lengths stored as a
phylo object (as in the |
species |
is an optional |
managed |
is a |
survival |
is a |
feasibility |
is an optional |
success |
is a |
phylodiv.expected.secured
takes the probability of survival
of species (before and after management) and a phylogenetic tree (rooted
and with branch lengths) and calculates expected Phylogenetic Diversity
(PD). PD is defined as the total length of all branches spanning a set of
species (Faith, 1992). Expected PD is the summed branch length expected to
survive given the probability of survival of species (Witting & Loeschcke
1995; Faith 2013). An optional argument (feasibility
) allows for the
gain of conserving any species to be down-weighted by the probability that
management will be successful.
A numeric
vector giving three values corresponding to:
expected PD with management; expected PD without management; and
the gain in expected PD with management (i.e. the difference).
Faith DP. 1992. Conservation evaluation and phylogenetic diversity. Biological Conservation 61: 1-10.
Faith DP. 2013. Biodiversity and evolutionary history: useful extensions of the PD phylogenetic diversity assessment framework. Annals of the New York Academy of Sciences 1289: 69-89.
Witting L. & Loeschcke V. 1995. The optimization of biodiversity conservation. Biological Conservation 71: 205-207.
1 2 3 4 5 | data(bandicoot_tree)
threatened <- c("Macrotis_lagotis","Rhynchomeles_prattorum","Peroryctes_broadbenti",
"Isoodon_auratus","Perameles_gunnii","Perameles_bougainville")
probs <- c(0.01,0.90,0.01,0.30,0.99,0.99,0.99,0.99,0.99,0.99,0.30,0.99,0.90,0.99,0.99,0.99,0.90,0.01,0.90)
phylodiv.expect.secured(bandicoot_tree,managed=threatened,survival=probs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.