Niche Overlap Index Function
Niche overlap refers to the extent to which different species use the same resources or occupy similar ecological niches. High niche overlap might indicate intense competition, whereas low overlap suggests niche differentiation, allowing species to coexist by minimizing direct competition.
To capture the changes in density-independent abiotic response, also known as niche breadth, this implementation uses Pianka's Niche Overlap Index, as suggested by Pianka (1973). The summary statistics of this index include the mean, maximum, and minimum values across all species pairs, providing a comprehensive understanding of niche sharing within the community.
Functionality Overview
The Niche Overlap Index functions in MetaCommunityMetrics provide a robust framework for calculating niche overlap based on species abundance or presence-absence data. These functions allow you to evaluate how species share ecological space within a metacommunity, offering valuable insights into community dynamics and species interactions.
The Function
niche_overlap
: This function calculates the Niche Overlap Index for a given set of species across different patches. It provides metrics for mean, minimum, and maximum niche overlap, allowing for a comprehensive assessment of niche sharing within the community.
MetaCommunityMetrics.niche_overlap
— Functionniche_overlap(abundance::AbstractVector, species::Union{AbstractVector, String}, patch::Union{AbstractVector, String}, time::AbstractVector) -> DataFrame
Calculates the overall mean, maximum, and minimum values of the niche overlap index from all species pairs in the provided data.
Arguments
abundance::AbstractVector
: Vector representing the abundance of species.species::Union{AbstractVector, String}
: Vector or string representing species names or IDs.patch::Union{AbstractVector, String}
: Vector or string representing patch names or IDs.time::AbstractVector
: Vector representing the time points.
Description
The niche overlap index is calculated based on the method suggested by Pianka (1973), with the assumption that the proportional use of a species at a specific site and time equals its relative abundance at that site and time. To determine relative abundance, the abundance of each species in a particular patch is divided by the total abundance of that species across all patches and times.
Returns
DataFrame
: A DataFrame containing the overall mean, maximum, and minimum values of the niche overlap index from all species pairs.
Example
julia> using MetaCommunityMetrics
julia> df = load_sample_data()
48735×10 DataFrame
Row │ Year Month Day Sampling_date_order plot Species Abundance Presence Latitude Longitude
│ Int64 Int64 Int64 Int64 Int64 String3 Int64 Int64 Float64 Float64
───────┼────────────────────────────────────────────────────────────────────────────────────────────────────
1 │ 2010 1 16 1 1 BA 0 0 35.0 -110.0
2 │ 2010 1 16 1 2 BA 0 0 35.0 -109.5
3 │ 2010 1 16 1 8 BA 0 0 35.5 -109.5
4 │ 2010 1 16 1 9 BA 0 0 35.5 -109.0
5 │ 2010 1 16 1 11 BA 0 0 35.5 -108.0
⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮
48731 │ 2023 3 21 117 9 SH 0 0 35.5 -109.0
48732 │ 2023 3 21 117 10 SH 0 0 35.5 -108.5
48733 │ 2023 3 21 117 12 SH 1 1 35.5 -107.5
48734 │ 2023 3 21 117 16 SH 0 0 36.0 -108.5
48735 │ 2023 3 21 117 23 SH 0 0 36.5 -108.0
48725 rows omitted
julia> result = niche_overlap(df.Abundance, df.Species, df.plot, df.Sampling_date_order)
1×3 DataFrame
Row │ mean_niche_overlap_index min_niche_overlap_index max_niche_overlap_index
│ Float64 Float64 Float64
─────┼────────────────────────────────────────────────────────────────────────────
1 │ 0.827739 0.591836 1.0
References
- MacArthur, R. & Levins, R. The limiting similarity, convergence, and divergence of coexisting species. The American Naturalist 101, 377-385 (1967).
- Pianka, E. R. (1974). "Niche overlap and diffuse competition." Proceedings of the National Academy of Sciences, 71(5), 2141-2145.
- Pianka, E. R. (1973). "The Structure of Lizard Communities." Annual Review of Ecology and Systematics, 4(1), 53-74.