Niche overlap
Compute niche overlap from predictions of species distributions with the 'I' or 'D' similarity statistic of Warren et al. (2009). The statistic ranges from 0 (no overlap) to 1 (the distributions are identical).
nicheOverlap(x, y, stat='I', mask=TRUE, checkNegatives=TRUE)
x |
RasterLayer with non-negative values (predictions of the probability that a site is suitable for a species) |
y |
RasterLayer with non-negative values, as above |
stat |
character either 'I' or 'D' to get the statistic with that name |
mask |
logical. If |
checkNegatives |
logical. If |
numeric
Based on SDMTools::Istat by Jeremy VanDerWal
Warren, D.L., R.E. Glor, M. Turelli, and D. Funk. 2009. Environmental niche equivalency versus conservatism: quantitative approaches to niche evolution. Evolution 62:2868-2883; Erratum: Evolution 65: 1215
r1 <- raster(nr=18, nc=36) r2 <- raster(nr=18, nc=36) set.seed(0) r1[] <- runif(ncell(r1)) r2[] <- runif(ncell(r1)) nicheOverlap(r1, r2)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.