maxent_limiting: Calculate which factors limit predicted habitat suitability

Description Usage Arguments Value References Examples

Description

Calculate a limiting factor surface corresponding to projections of a Maxent model.

Usage

1

Arguments

x

A RasterStack containing predictors grids for predictors used in the Maxent model specified at me.

me

A a MaxEnt fitted model object (from dismo::maxent).

Value

A Raster object indicating the most limiting factor at each grid cell. This is defined, for each grid cell, as the variable whose value is most responsible for decreasing suitability at that cell. The decrease in suitability is calculated, for each predictor in turn, relative to the suitability (logistic prediction) that would be achieved if that predictor took the value equal to the mean at occurrence sites (median for categorical variables). The predictor associated with the largest decrease in suitability is the most limiting factor.

References

Elith, J., Kearney, M. and Phillips, S. (2010), The art of modelling range-shifting species. Methods in Ecology and Evolution, 1: 330–342. doi: 10.1111/j.2041-210X.2010.00036.x

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(dismo)
library(rJava)

fnames <- list.files(path=paste(system.file(package="dismo"), '/ex', sep=''),
                     pattern='grd', full.names=TRUE )
predictors <- stack(fnames)
occurence <- paste(system.file(package='dismo'), '/ex/bradypus.csv', sep='')
occ <- read.table(occurence, header=TRUE, sep=',')[,-1]
me <- maxent(predictors, occ, factors='biome')

maxent_limiting(predictors, me)

johnbaums/things documentation built on May 19, 2019, 3:03 p.m.