Taxonomic vs Phylogenetic Diversity Explained
What the Hell Is Taxonomic Diversity?
Taxonomic diversity is the simplest way to measure biodiversity. You count the number of different species in an area and that's it. No complex math. No evolutionary trees. Just species names.
Researchers identify organisms, list them, and tally the count. A forest with 50 tree species has higher taxonomic diversity than one with 10.
This approach uses Linnaean classification—kingdom, phylum, class, order, family, genus, species. The more categories represented, the higher your diversity score.
How Taxonomic Diversity Is Measured
Three common metrics exist:
- Species Richness — Total count of different species present. No weighting involved.
- Species Abundance — How many individuals each species has. Rare species count differently than dominant ones.
- Taxonomic Distinctness — Measures how taxonomically distant species are from each other. A pine tree and a fern are more distinct than two pine tree species.
The Problem With Taxonomic Diversity
Taxonomic diversity ignores evolutionary history. It treats a species that appeared yesterday the same as one that's survived 50 million years. It doesn't account for unique lineages that have no close relatives in an ecosystem.
Two communities can have identical species counts but completely different evolutionary stories. Taxonomic diversity can't tell you that.
What Is Phylogenetic Diversity?
Phylogenetic diversity uses evolutionary trees to measure biodiversity. Instead of just counting species, you measure the total branch length connecting all species in a community.
More branch length means more evolutionary history is represented. A community containing ancient, isolated lineages scores higher than one with only recently diverged species—even if species counts are identical.
Think of it this way: a forest with one ginkgo tree (ancient lineage, no close living relatives) contributes more phylogenetic diversity than 20 grass species that all diverged from each other recently.
Key Phylogenetic Metrics
- Phylogenetic Diversity (PD) — Sum of all branch lengths in a phylogenetic tree connecting the species in your community.
- Faith's Phylogenetic Diversity — The most common version. Calculates total evolutionary history preserved in a set of taxa.
- Mean Phylogenetic Distance — Average evolutionary distance between all pairs of species in a community.
- Nearest Taxon Index — Measures how closely related species are to their nearest neighbors.
Why Phylogenetic Diversity Matters
Evolutionary distinct species often hold unique genetic material that can't be replaced. If you lose the last member of an ancient lineage, that genetic information is gone forever—regardless of how many other species exist nearby.
Conservation biologists use phylogenetic diversity to prioritize species that represent irreplaceable evolutionary heritage.
Head-to-Head Comparison
| Feature | Taxonomic Diversity | Phylogenetic Diversity |
|---|---|---|
| Data Required | Species list only | Complete phylogenetic tree |
| Complexity | Low | High |
| Evolutionary History | Not considered | Core component |
| Computation Time | Minutes | Hours to days |
| Species Weighting | Equal by default | Weighted by lineage age |
| Recent Divergences | Treats as equally valuable | Counts less |
| Best Use Case | Quick assessments, basic surveys | Conservation prioritization, evolutionary studies |
When to Use Which Method
Use taxonomic diversity when:
- You're doing rapid biodiversity assessments
- Phylogenetic data isn't available
- You only need species-level information
- Resources and time are limited
Use phylogenetic diversity when:
- Conservation decisions require prioritizing distinct lineages
- You're studying evolutionary processes
- Genetic uniqueness matters for your research
- You have reliable phylogenetic trees available
Getting Started: Measuring Both in Your Research
Step 1: Collect Your Data
You'll need species occurrence data. Field surveys, museum records, or existing databases like GBIF work fine. For phylogenetic analysis, you'll also need phylogenetic trees—these come from published studies or tree-building databases.
Step 2: Calculate Taxonomic Diversity
For basic species richness, just count unique species. Use R packages like vegan or biodiversityR for more advanced metrics including Shannon index and Simpson's index.
Step 3: Calculate Phylogenetic Diversity
Use picante package in R. Load your community data and phylogenetic tree, then run the pd() function to get Faith's Phylogenetic Diversity scores.
# Basic R example library(picante) pd_result <- pd(community_matrix, phylo_tree)
For Python users, ete3 and skbio libraries handle phylogenetic diversity calculations.
Step 4: Interpret Your Results
Compare both metrics for the same community. If phylogenetic diversity is much lower than taxonomic diversity would suggest, your community contains many closely related species. If it's higher, you have evolutionarily distinct species worth protecting.
The Bottom Line
Taxonomic diversity tells you what species exist. Phylogenetic diversity tells you how irreplaceable those species are based on their evolutionary history.
Neither metric is universally better. Taxonomic diversity is faster, cheaper, and sufficient for many purposes. Phylogenetic diversity gives you deeper insight but requires significantly more data and expertise.
Use taxonomic diversity for baseline surveys. Use phylogenetic diversity when conservation decisions or evolutionary questions are at stake.