--- title: "Clarke & Warwick Taxonomic Distinctness" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Clarke & Warwick Taxonomic Distinctness} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 8, fig.height = 5 ) ``` ## What Is Taxonomic Distinctness? Clarke & Warwick (1995, 1998, 2001) developed a family of indices that measure how **taxonomically spread out** the species in a community are. Instead of counting species or measuring evenness, these indices ask: **"How far apart are the species in the taxonomic tree?"** Two communities may have the same number of species, but if one contains species spanning many families and orders while the other has species from a single genus, the first is taxonomically more distinct. ```{r setup} library(taxdiv) # Mediterranean forest community community <- c( Quercus_coccifera = 25, Quercus_infectoria = 18, Pinus_brutia = 30, Pinus_nigra = 12, Juniperus_excelsa = 8, Juniperus_oxycedrus = 6, Arbutus_andrachne = 15, Styrax_officinalis = 4, Cercis_siliquastrum = 3, Olea_europaea = 10 ) tax_tree <- build_tax_tree( species = names(community), Genus = c("Quercus", "Quercus", "Pinus", "Pinus", "Juniperus", "Juniperus", "Arbutus", "Styrax", "Cercis", "Olea"), Family = c("Fagaceae", "Fagaceae", "Pinaceae", "Pinaceae", "Cupressaceae", "Cupressaceae", "Ericaceae", "Styracaceae", "Fabaceae", "Oleaceae"), Order = c("Fagales", "Fagales", "Pinales", "Pinales", "Pinales", "Pinales", "Ericales", "Ericales", "Fabales", "Lamiales") ) ``` ## The Taxonomic Distance Matrix All Clarke & Warwick indices are built on pairwise taxonomic distances. The distance between two species equals the number of steps up the taxonomic tree to reach their lowest common ancestor: ```{r distance} dist_mat <- tax_distance_matrix(tax_tree) round(dist_mat, 2) ``` - Same genus (e.g., *Quercus coccifera* and *Q. infectoria*): distance = 1 - Same family, different genera: distance = 2 - Same order, different families: distance = 3 - Different orders: distance = 4 (maximum for a 4-level tree) Distances are normalized to a 0--100 scale by dividing by the maximum possible path length. ## The Four Indices ### Delta --- Taxonomic Diversity **What it measures:** The average taxonomic distance between two randomly chosen *individuals* from the community. **Key property:** Abundance-weighted. Communities where abundant species are taxonomically distant score higher. $$\Delta = \frac{\displaystyle\sum\sum_{i