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:

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

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

FeatureTaxonomic DiversityPhylogenetic Diversity
Data RequiredSpecies list onlyComplete phylogenetic tree
ComplexityLowHigh
Evolutionary HistoryNot consideredCore component
Computation TimeMinutesHours to days
Species WeightingEqual by defaultWeighted by lineage age
Recent DivergencesTreats as equally valuableCounts less
Best Use CaseQuick assessments, basic surveysConservation prioritization, evolutionary studies

When to Use Which Method

Use taxonomic diversity when:

Use phylogenetic diversity when:

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.