中文 | Español | English | português | Turkish
The theory of Island Biogeography, first articulated by Robert Macarthur and E.O. Wilson in the 1964 paper "Equilibrium theory of insular zoogeography", presents a quantitative and predictive approach to understanding biodiversity on island systems. The theory is built around the idea that immigration and extinction -- two core processes that determine species diversity on islands -- vary predictably. Specifically, species are expected to immigrate at higher rates from the mainland to islands closer by than to islands further away, and extinction rates are expected to be higher in smaller islands than larger islands. The balance of these two processes determine an island's equilibrium species richness. Macarthur and Wilson expanded on this theory in their classic 1967 book "The Theory of Island Biogeography". Daniel Simberloff notably conducted experimental tests of this theory using mangrove islands in Florida, and island biogeography has also been hugely influential in conservation biology. For a recent review of island biogeography's influence, see this 2017 review.
Extinction rate on island:
$$E = e^{\frac{kS}{A}}-1$$
Immigration rate from mainland to island:
$$I = e^{\left(-\frac{k}{D}*(S-M)\right)}-1$$
Equilibrium number of species on the island:
$$S_{eq} = \frac{AM}{D+A}$$
where:
library(ggplot2) library(dplyr) library(ecoevoapps) library(patchwork) knitr::opts_chunk$set(echo = FALSE, warning = FALSE)
sidebarLayout( sidebarPanel( sliderInput(inputId = "D1", label = HTML("D<sub>A</sub> (Distance from mainland to Island A)"), min = 1, max = 8, value = 1), sliderInput(inputId = "D2", label = HTML("D<sub>B</sub> (Distance from mainland to Island B)"), min = 1, max = 8, value = 4), sliderInput(inputId = "A1", label = HTML("A<sub>A</sub> (Area of island A)"), min = .1, max = 4, value = 1), sliderInput(inputId = "A2", label = HTML("A<sub>B</sub> (Area of island B)"), min = .1, max = 4, value = .5), sliderInput(inputId = "M", label = "M (Number of species in the mainland)", min = 1, max = 100, value = 100), width=4), mainPanel( renderPlot({plot_to_print()}, width = 400, height = 600) ) ) Dvec <- reactive({c(input$D1, input$D2)}) Avec <- reactive({c(input$A1, input$A2)}) plots <- reactive({ ecoevoapps::run_ibiogeo_model(D = Dvec(), A = Avec(), M=input$M, k=0.015) }) map <- reactive({plots()$map}) eq_plot <- reactive({plots()$eq_plot}) plot_to_print <- reactive({ map() / eq_plot() })
"Equilibrium theory of insular zoogeography", Macarthur and Wilson 1964.
"The Theory of Island Biogeography", Macarthur and Wilson 1967.
"Experimental Zoogeography of Islands: The Colonization of Empty Islands", Simberloff and Wilson 1969.
"Island biogeography: Taking the long view of nature’s laboratories", Whittaker et al. 2017.
"Island Biogeography and Conservation: Strategy and Limitations", Diamond et al. 1976.
suppressWarnings(ecoevoapps::print_app_footer(language = "en"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.