Type: | Package |
Title: | Ensemble Platform for Species Distribution Modeling |
Version: | 4.2-6-2 |
Date: | 2025-01-24 |
Author: | Wilfried Thuiller [aut], Damien Georges [aut], Maya Gueguen [aut, cre], Robin Engler [aut], Frank Breiner [aut], Bruno Lafourcade [aut], Remi Patin [aut], Helene Blancheteau [aut] |
Maintainer: | Maya Gueguen <maya.gueguen@univ-grenoble-alpes.fr> |
Contact: | Wilfried Thuiller <wilfried.thuiller@univ-grenoble-alpes.fr>, Maya Gueguen <maya.gueguen@univ-grenoble-alpes.fr>, Helene Blancheteau <helene.blancheteau@univ-grenoble-alpes.fr> |
BugReports: | https://github.com/biomodhub/biomod2/issues |
URL: | https://biomodhub.github.io/biomod2/ |
Description: | Functions for species distribution modeling, calibration and evaluation, ensemble of models, ensemble forecasting and visualization. The package permits to run consistently up to 10 single models on a presence/absences (resp presences/pseudo-absences) dataset and to combine them in ensemble models and ensemble projections. Some bench of other evaluation and visualization tools are also available within the package. |
Depends: | R (≥ 4.1) |
Imports: | stats, utils, methods, terra (≥ 1.6-33), sp, reshape, reshape2, abind, foreach, ggplot2, gbm (≥ 2.1.3), rpart, MASS, pROC (≥ 1.15.0), PresenceAbsence, dplyr |
Suggests: | Hmisc, gam, mgcv, earth, maxnet, mda, nnet, randomForest, xgboost, car, caret, dismo, ENMeval, doParallel, raster, ggpubr, testthat, knitr, markdown, tidyterra, ggtext |
License: | GPL-3 |
RoxygenNote: | 7.3.2 |
Encoding: | UTF-8 |
VignetteBuilder: | knitr |
Collate: | 'biomod2-package.R' 'biomod2_globalVariables.R' 'biomod2_classes_0.R' 'biomod2_classes_1.R' 'biomod2_classes_2.R' 'biomod2_classes_3.R' 'biomod2_classes_4.R' 'biomod2_classes_5.R' 'biomod2_internal.R' 'biomod2_data.R' 'BIOMOD_EnsembleForecasting.R' 'BIOMOD_EnsembleModeling.R' 'BIOMOD_FormatingData.R' 'BIOMOD_LoadModels.R' 'BIOMOD_Modeling.R' 'BIOMOD_Projection.R' 'BIOMOD_RangeSize.R' 'DEPRECATED.R' 'bm_BinaryTransformation.R' 'bm_CrossValidation.R' 'bm_FindOptimStat.R' 'bm_MakeFormula.R' 'bm_ModelingOptions.R' 'bm_PlotEvalBoxplot.R' 'bm_PlotEvalMean.R' 'bm_PlotRangeSize.R' 'bm_PlotResponseCurves.R' 'bm_PlotVarImpBoxplot.R' 'bm_PseudoAbsences.R' 'bm_RunModelsLoop.R' 'bm_SRE.R' 'bm_SampleBinaryVector.R' 'bm_SampleFactorLevels.R' 'bm_Tuning.R' 'bm_VariablesImportance.R' 'zzz.R' |
LazyData: | true |
NeedsCompilation: | no |
Packaged: | 2025-01-24 14:46:34 UTC; gueguema |
Repository: | CRAN |
Date/Publication: | 2025-01-24 18:20:06 UTC |
Transform categorical into numeric variables
Description
Internal function transform categorical variables in a data.frame into numeric variables. Mostly used with maxent which cannot read character
Usage
.categorical2numeric(df, categorical_var)
Arguments
df |
data.frame to be transformed |
categorical_var |
the names of categorical variables in df |
Value
a data.frame without categorical variables
Get categorical variable names
Description
Internal function to get categorical variables name from a data.frame.
Usage
.get_categorical_names(df)
Arguments
df |
data.frame to be checked |
Value
a vector with the name of categorical variables
Get class of environmental data provided
Description
Get class of environmental data provided
Usage
.get_env_class(new.env)
Arguments
new.env |
object to identify |
Value
a character
Load library for GAM models
Description
This function loads library for either GAM and BAM from mgcv package or for GAM from gam package.
Usage
.load_gam_namespace(
model_subclass = c("GAM_mgcv_gam", "GAM_mgcv_bam", "GAM_gam_gam")
)
Arguments
model_subclass |
the subclass of GAM model |
.transform.outputs.list
Description
Deprecated function name for
.transform_outputs_list
Usage
.transform.outputs.list(...)
Arguments
... |
Additional arguments |
See Also
Transform predictions data.frame from long to wide with models as columns
Description
This function is used internally in get_predictions
to ensure back-compatibility with former output of get_predictions
(i.e. for biomod2 version < 4.2-2). It transform a long data.frame
into a wide data.frame
with each column corresponding to a single model.
Note that the function is intended for internal use but have been made available for compatibility with ecospat
Usage
.transform_model.as.col(df)
Arguments
df |
a long |
Value
a wide data.frame
Author(s)
Remi Patin
BIOMOD_EnsembleModeling()
output object class
Description
Class returned by BIOMOD_EnsembleModeling
, and used by
BIOMOD_LoadModels
, BIOMOD_PresenceOnly
and
BIOMOD_EnsembleForecasting
Usage
## S4 method for signature 'BIOMOD.ensemble.models.out'
show(object)
Arguments
object |
a |
Slots
modeling.id
a
character
corresponding to the name (ID) of the simulation setdir.name
a
character
corresponding to the modeling foldersp.name
a
character
corresponding to the species nameexpl.var.names
a
vector
containing names of explanatory variablesmodels.out
a
BIOMOD.stored.models.out-class
object containing informations fromBIOMOD_Modeling
objectem.by
a
character
corresponding to the way kept models have been combined to build the ensemble models, must be amongPA+run
,PA+algo
,PA
,algo
,all
em.computed
a
vector
containing names of ensemble modelsem.failed
a
vector
containing names of failed ensemble modelsem.models_kept
a
list
containing single models for each ensemble modelmodels.evaluation
a
BIOMOD.stored.data.frame-class
object containing models evaluationvariables.importance
a
BIOMOD.stored.data.frame-class
object containing variables importancemodels.prediction
a
BIOMOD.stored.data.frame-class
object containing models predictionsmodels.prediction.eval
a
BIOMOD.stored.data.frame-class
object containing models predictions for evaluation datalink
a
character
containing the file name of the saved object
Author(s)
Damien Georges
See Also
BIOMOD_EnsembleModeling
, BIOMOD_LoadModels
,
BIOMOD_PresenceOnly
, bm_VariablesImportance
,
bm_PlotEvalMean
, bm_PlotEvalBoxplot
,
bm_PlotVarImpBoxplot
, bm_PlotResponseCurves
Other Toolbox objects:
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.ensemble.models.out")
## ----------------------------------------------------------------------- #
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
## ----------------------------------------------------------------------- #
# Model ensemble models
myBiomodEM <- BIOMOD_EnsembleModeling(bm.mod = myBiomodModelOut,
models.chosen = 'all',
em.by = 'all',
em.algo = c('EMmean', 'EMca'),
metric.select = c('TSS'),
metric.select.thresh = c(0.7),
metric.eval = c('TSS', 'ROC'),
var.import = 3,
seed.val = 42)
myBiomodEM
BIOMOD_FormatingData()
output object class
Description
Class returned by BIOMOD_FormatingData
, and used by
bm_Tuning
, bm_CrossValidation
and
BIOMOD_Modeling
Usage
## S4 method for signature 'numeric,data.frame'
BIOMOD.formated.data(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
na.rm = TRUE,
data.mask = NULL,
shared.eval.env = FALSE,
filter.raster = FALSE
)
## S4 method for signature 'data.frame,ANY'
BIOMOD.formated.data(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
na.rm = TRUE,
filter.raster = FALSE
)
## S4 method for signature 'numeric,matrix'
BIOMOD.formated.data(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
na.rm = TRUE,
filter.raster = FALSE
)
## S4 method for signature 'numeric,SpatRaster'
BIOMOD.formated.data(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
na.rm = TRUE,
shared.eval.env = FALSE,
filter.raster = FALSE
)
## S4 method for signature 'BIOMOD.formated.data'
show(object)
Arguments
sp |
A |
env |
a |
xy |
(optional, default |
dir.name |
a |
sp.name |
a |
eval.sp |
(optional, default |
eval.env |
(optional, default |
eval.xy |
(optional, default |
na.rm |
(optional, default |
data.mask |
(optional, default |
shared.eval.env |
(optional, default |
filter.raster |
(optional, default |
object |
a |
Slots
dir.name
a
character
corresponding to the modeling foldersp.name
a
character
corresponding to the species namecoord
a 2-columns
data.frame
containing the correspondingX
andY
coordinatesdata.species
a
vector
containing the species observations (0
,1
orNA
)data.env.var
a
data.frame
containing explanatory variablesdata.mask
a
SpatRaster
object containing the mask of the studied areahas.data.eval
a
logical
value defining whether evaluation data is giveneval.coord
(optional, default
NULL
)
A 2-columnsdata.frame
containing the correspondingX
andY
coordinates for evaluation dataeval.data.species
(optional, default
NULL
)
Avector
containing the species observations (0
,1
orNA
) for evaluation dataeval.data.env.var
(optional, default
NULL
)
Adata.frame
containing explanatory variables for evaluation data
Author(s)
Damien Georges
See Also
BIOMOD_FormatingData
, bm_Tuning
,
bm_CrossValidation
, BIOMOD_Modeling
,
bm_RunModelsLoop
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.formated.data")
## ----------------------------------------------------------------------- #
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
myBiomodData
plot(myBiomodData)
summary(myBiomodData)
BIOMOD_FormatingData()
output object class (with pseudo-absences)
Description
Class returned by BIOMOD_FormatingData
, and used by
bm_Tuning
, bm_CrossValidation
and
BIOMOD_Modeling
Usage
## S4 method for signature 'numeric,data.frame'
BIOMOD.formated.data.PA(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
PA.nb.rep = 1,
PA.strategy = "random",
PA.nb.absences = NULL,
PA.dist.min = 0,
PA.dist.max = NULL,
PA.sre.quant = 0.025,
PA.fact.aggr = NULL,
PA.user.table = NULL,
na.rm = TRUE,
filter.raster = FALSE,
seed.val = NULL
)
## S4 method for signature 'numeric,SpatRaster'
BIOMOD.formated.data.PA(
sp,
env,
xy = NULL,
dir.name = ".",
sp.name = NULL,
eval.sp = NULL,
eval.env = NULL,
eval.xy = NULL,
PA.nb.rep = 1,
PA.strategy = "random",
PA.nb.absences = NULL,
PA.dist.min = 0,
PA.dist.max = NULL,
PA.sre.quant = 0.025,
PA.fact.aggr = NULL,
PA.user.table = NULL,
na.rm = TRUE,
filter.raster = FALSE,
seed.val = NULL
)
Arguments
sp |
A |
env |
a |
xy |
(optional, default |
dir.name |
a |
sp.name |
a |
eval.sp |
(optional, default |
eval.env |
(optional, default |
eval.xy |
(optional, default |
PA.nb.rep |
(optional, default |
PA.strategy |
(optional, default |
PA.nb.absences |
(optional, default |
PA.dist.min |
(optional, default |
PA.dist.max |
(optional, default |
PA.sre.quant |
(optional, default |
PA.fact.aggr |
(optional, default |
PA.user.table |
(optional, default |
na.rm |
(optional, default |
filter.raster |
(optional, default |
seed.val |
(optional, default |
Slots
dir.name
a
character
corresponding to the modeling foldersp.name
a
character
corresponding to the species namecoord
a 2-columns
data.frame
containing the correspondingX
andY
coordinatesdata.species
a
vector
containing the species observations (0
,1
orNA
)data.env.var
a
data.frame
containing explanatory variablesdata.mask
a
SpatRaster
object containing the mask of the studied areahas.data.eval
a
logical
value defining whether evaluation data is giveneval.coord
(optional, default
NULL
)
A 2-columnsdata.frame
containing the correspondingX
andY
coordinates for evaluation dataeval.data.species
(optional, default
NULL
)
Avector
containing the species observations (0
,1
orNA
) for evaluation dataeval.data.env.var
(optional, default
NULL
)
Adata.frame
containing explanatory variables for evaluation dataPA.strategy
a
character
corresponding to the pseudo-absence selection strategyPA.table
a
data.frame
containing the corresponding table of selected pseudo-absences (indicated byTRUE
orFALSE
) from thepa.tab
list element returned by thebm_PseudoAbsences
function
Author(s)
Damien Georges
See Also
BIOMOD_FormatingData
, bm_PseudoAbsences
,
bm_Tuning
, bm_CrossValidation
,
BIOMOD_Modeling
, bm_RunModelsLoop
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.formated.data.PA")
## ----------------------------------------------------------------------- #
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Keep only presence informations
DataSpecies <- DataSpecies[which(DataSpecies[, myRespName] == 1), ]
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
# Format Data with pseudo-absences : random method
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName,
PA.nb.rep = 4,
PA.strategy = 'random',
PA.nb.absences = 1000)
myBiomodData
plot(myBiomodData)
bm_ModelingOptions
output object class
Description
Class returned by bm_ModelingOptions
and used by
BIOMOD_Modeling
Usage
## S4 method for signature 'BIOMOD.models.options'
show(object)
## S4 method for signature 'BIOMOD.models.options'
print(x, dataset = "_allData_allRun")
Arguments
object |
a |
x |
a |
dataset |
a |
Slots
models
a
vector
containing model names for which options have been retrieved and defined, must bealgo.datatype.package.function
options
a
list
containingBIOMOD.options.dataset
object for each model
Author(s)
Maya Gueguen
See Also
BIOMOD.options.default
,
BIOMOD.options.dataset
,
bm_ModelingOptions
, bm_Tuning
,
BIOMOD_Modeling
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.models.options")
BIOMOD_Modeling()
output object class
Description
Class returned by BIOMOD_Modeling
, and used by
BIOMOD_LoadModels
, BIOMOD_PresenceOnly
,
BIOMOD_Projection
and BIOMOD_EnsembleModeling
Usage
## S4 method for signature 'BIOMOD.models.out'
show(object)
Arguments
object |
a |
Slots
modeling.id
a
character
corresponding to the name (ID) of the simulation setdir.name
a
character
corresponding to the modeling foldersp.name
a
character
corresponding to the species nameexpl.var.names
a
vector
containing names of explanatory variablesmodels.computed
a
vector
containing names of computed modelsmodels.failed
a
vector
containing names of failed modelshas.evaluation.data
a
logical
value defining whether evaluation data is givenscale.models
a
logical
value defining whether models have been rescaled or notformated.input.data
a
BIOMOD.stored.formated.data-class
object containing informations fromBIOMOD_FormatingData
objectcalib.lines
a
BIOMOD.stored.data.frame-class
object containing calibration linesmodels.options
a
BIOMOD.stored.options-class
object containing informations frombm_ModelingOptions
objectmodels.evaluation
a
BIOMOD.stored.data.frame-class
object containing models evaluationvariables.importance
a
BIOMOD.stored.data.frame-class
object containing variables importancemodels.prediction
a
BIOMOD.stored.data.frame-class
object containing models predictionsmodels.prediction.eval
a
BIOMOD.stored.data.frame-class
object containing models predictions for evaluation datalink
a
character
containing the file name of the saved object
Author(s)
Damien Georges
See Also
BIOMOD_Modeling
, BIOMOD_LoadModels
,
BIOMOD_PresenceOnly
, BIOMOD_Projection
,
BIOMOD_EnsembleModeling
, bm_VariablesImportance
,
bm_PlotEvalMean
, bm_PlotEvalBoxplot
,
bm_PlotVarImpBoxplot
, bm_PlotResponseCurves
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.models.out")
## ----------------------------------------------------------------------- #
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
## ----------------------------------------------------------------------- #
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
myBiomodModelOut
bm_ModelingOptions
output object class
Description
Class returned by bm_ModelingOptions
(a
list
of BIOMOD.options.dataset
more exactly), and used by
BIOMOD_Modeling
Usage
## S4 method for signature 'character'
BIOMOD.options.dataset(
mod,
typ,
pkg,
fun,
strategy,
user.val = NULL,
user.base = NULL,
tuning.fun = NULL,
bm.format = NULL,
calib.lines = NULL
)
## S4 method for signature 'BIOMOD.options.dataset'
show(object)
## S4 method for signature 'BIOMOD.options.dataset'
print(x, dataset = "_allData_allRun")
Arguments
mod |
a |
typ |
a |
pkg |
a |
fun |
a |
strategy |
a |
user.val |
(optional, default |
user.base |
(optional, default |
tuning.fun |
(optional, default |
bm.format |
(optional, default |
calib.lines |
(optional, default |
object |
a |
x |
a |
dataset |
a |
Slots
model
a
character
corresponding to the modeltype
a
character
corresponding to the data type (binary
,binary.PA
,abundance
,compositional
)package
a
character
corresponding to the package containing the model function to be calledfunc
a
character
corresponding to the model function name to be calledargs.names
a
vector
containingcharacter
corresponding to the model function argumentsargs.default
a
list
containing for each dataset the default values for all arguments listed inargs.names
args.values
a
list
containing for each dataset the to-be-used values for all arguments listed inargs.names
Author(s)
Maya Gueguen
See Also
BIOMOD.options.default
, bm_ModelingOptions
,
bm_Tuning
, BIOMOD_Modeling
, bm_RunModelsLoop
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.options.dataset")
bm_ModelingOptions
output object class
Description
Class returned by bm_ModelingOptions
(a
list
of BIOMOD.options.dataset
more exactly), and used by
BIOMOD_Modeling
Usage
## S4 method for signature 'character,character'
BIOMOD.options.default(mod, typ, pkg, fun)
Arguments
mod |
a |
typ |
a |
pkg |
a |
fun |
a |
Slots
model
a
character
corresponding to the modeltype
a
character
corresponding to the data type (binary
,binary.PA
,abundance
,compositional
)package
a
character
corresponding to the package containing the model function to be calledfunc
a
character
corresponding to the model function name to be calledargs.names
a
vector
containingcharacter
corresponding to the model function argumentsargs.default
a
list
containing for each dataset the default values for all arguments listed inargs.names
Author(s)
Maya Gueguen
See Also
BIOMOD.options.dataset
, bm_ModelingOptions
,
bm_Tuning
, BIOMOD_Modeling
, bm_RunModelsLoop
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.options.default")
BIOMOD_Projection()
output object class
Description
Class returned by BIOMOD_Projection
, and used by
BIOMOD_EnsembleForecasting
Usage
## S4 method for signature 'BIOMOD.projection.out,missing'
plot(
x,
coord = NULL,
plot.output,
do.plot = TRUE,
std = TRUE,
scales,
size,
maxcell = 5e+05,
...
)
## S4 method for signature 'BIOMOD.projection.out'
show(object)
Arguments
x |
a |
coord |
a 2-columns |
plot.output |
(optional, default |
do.plot |
(optional, default |
std |
(optional, default |
scales |
(optional, default |
size |
(optional, default |
maxcell |
maximum number of cells to plot. Argument transmitted to |
... |
additional parameters to be passed to |
object |
a |
Slots
modeling.id
a
character
corresponding to the name (ID) of the simulation setproj.name
a
character
corresponding to the projection namedir.name
a
character
corresponding to the modeling foldersp.name
a
character
corresponding to the species nameexpl.var.names
a
vector
containing names of explanatory variablescoord
a 2-columns
matrix
ordata.frame
containing the correspondingX
andY
coordinates used to project the species distribution model(s)scale.models
a
logical
value defining whether models have been rescaled or notmodels.projected
a
vector
containing names of projected modelsmodels.out
a
BIOMOD.stored.data
objecttype
a
character
corresponding to the class of theval
slot of theproj.out
slotproj.out
a
BIOMOD.stored.data
object
Author(s)
Damien Georges
See Also
BIOMOD_Projection
, BIOMOD_EnsembleForecasting
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.stored.data
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.projection.out")
## ----------------------------------------------------------------------- #
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
## ----------------------------------------------------------------------- #
# Project single models
myBiomodProj <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'Current',
new.env = myExpl,
models.chosen = 'all',
metric.binary = 'all',
metric.filter = 'all',
build.clamping.mask = TRUE)
myBiomodProj
plot(myBiomodProj)
BIOMOD_Modeling
and BIOMOD_EnsembleModeling
output object class
Description
Classes used by BIOMOD_Modeling
and
BIOMOD_EnsembleModeling
to build their output object (see
BIOMOD.models.out
objects)
Details
BIOMOD.stored.data
is the basic object containing the slots inMemory
and
link
.
All listed classes below are derived from BIOMOD.stored.data
, and
contain a val
slot of specific type :
-
BIOMOD.stored.data.frame
:val
is adata.frame
-
BIOMOD.stored.SpatRaster
:val
is aPackedSpatRaster
-
BIOMOD.stored.files
:val
is acharacter
-
BIOMOD.stored.formated.data
:val
is aBIOMOD.formated.data
object -
BIOMOD.stored.options
:val
is aBIOMOD.models.options
object -
BIOMOD.stored.models.out
:val
is aBIOMOD.models.out
object
Slots
inMemory
a
logical
defining whether theval
slot has been loaded in memory or notlink
a
character
containing the file name of the savedval
slotval
an object of type depending on the
BIOMOD.stored.[...]
class (see Details)
Author(s)
Damien Georges
See Also
BIOMOD.formated.data
, BIOMOD.models.out
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
BIOMOD_Projection
, BIOMOD_EnsembleForecasting
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
biomod2_ensemble_model
,
biomod2_model
Examples
showClass("BIOMOD.stored.data")
showClass("BIOMOD.stored.data.frame")
showClass("BIOMOD.stored.SpatRaster")
showClass("BIOMOD.stored.files")
showClass("BIOMOD.stored.formated.data")
showClass("BIOMOD.stored.options")
showClass("BIOMOD.stored.models.out")
BIOMOD_CrossValidation
Description
Deprecated function name for
bm_CrossValidation
Usage
BIOMOD_CrossValidation(...)
Arguments
... |
Additional arguments |
See Also
Project ensemble species distribution models onto new environment
Description
This function allows to project ensemble models built with the
BIOMOD_EnsembleModeling
function onto new environmental data
(which can represent new areas, resolution or time scales for example).
Usage
BIOMOD_EnsembleForecasting(
bm.em,
bm.proj = NULL,
proj.name = NULL,
new.env = NULL,
new.env.xy = NULL,
models.chosen = "all",
metric.binary = NULL,
metric.filter = NULL,
compress = TRUE,
nb.cpu = 1,
na.rm = TRUE,
...
)
Arguments
bm.em |
a |
bm.proj |
a |
proj.name |
(optional, default |
new.env |
(optional, default |
new.env.xy |
(optional, default |
models.chosen |
a |
metric.binary |
(optional, default |
metric.filter |
(optional, default |
compress |
(optional, default |
nb.cpu |
(optional, default |
na.rm |
(optional, default |
... |
(optional, see Details) |
Details
If models.chosen = 'all'
, projections are done for all calibration and pseudo absences
runs if applicable.
These projections may be used later by the
BIOMOD_EnsembleForecasting
function.
If build.clamping.mask = TRUE
, a raster file will be saved within the projection
folder. This mask values will correspond to the number of variables in each pixel that are out
of their calibration / validation range, identifying locations where predictions are uncertain.
...
can take the following values :
-
on_0_1000
: alogical
value defining whether0 - 1
probabilities are to be converted to0 - 1000
scale to save memory on backup -
do.stack
: alogical
value defining whether all projections are to be saved as oneSpatRaster
object or severalSpatRaster
files (the default if projections are too heavy to be all loaded at once in memory) -
keep.in.memory
: alogical
value defining whether all projections are to be kept loaded at once in memory, or only links pointing to hard drive are to be returned -
output.format
: acharacter
value corresponding to the projections saving format on hard drive, must be either.grd
,.img
,.tif
or.RData
(the default ifnew.env
is given asmatrix
ordata.frame
)
Value
A BIOMOD.projection.out
object containing models projections, or links to saved
outputs.
Models projections are stored out of R (for memory storage reasons) in
proj.name
folder created in the current working directory :
the output is a
data.frame
ifnew.env
is amatrix
or adata.frame
it is a
SpatRaster
ifnew.env
is aSpatRaster
(or severalSpatRaster
objects, ifnew.env
is too large)raw projections, as well as binary and filtered projections (if asked), are saved in the
proj.name
folder
Author(s)
Wilfried Thuiller, Damien Georges, Robin Engler
See Also
BIOMOD_FormatingData
, bm_ModelingOptions
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
BIOMOD_RangeSize
Other Main functions:
BIOMOD_EnsembleModeling()
,
BIOMOD_FormatingData()
,
BIOMOD_LoadModels()
,
BIOMOD_Modeling()
,
BIOMOD_Projection()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# --------------------------------------------------------------- #
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
file.proj <- paste0(myRespName, "/proj_Current/", myRespName, ".Current.projection.out")
if (file.exists(file.proj)) {
myBiomodProj <- get(load(file.proj))
} else {
# Project single models
myBiomodProj <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'Current',
new.env = myExpl,
models.chosen = 'all',
build.clamping.mask = TRUE)
}
file.EM <- paste0(myRespName, "/", myRespName, ".AllModels.ensemble.models.out")
if (file.exists(file.EM)) {
myBiomodEM <- get(load(file.EM))
} else {
# Model ensemble models
myBiomodEM <- BIOMOD_EnsembleModeling(bm.mod = myBiomodModelOut,
models.chosen = 'all',
em.by = 'all',
em.algo = c('EMmean', 'EMca'),
metric.select = c('TSS'),
metric.select.thresh = c(0.7),
metric.eval = c('TSS', 'ROC'),
var.import = 3,
seed.val = 42)
}
# --------------------------------------------------------------- #
# Project ensemble models (from single projections)
myBiomodEMProj <- BIOMOD_EnsembleForecasting(bm.em = myBiomodEM,
bm.proj = myBiomodProj,
models.chosen = 'all',
metric.binary = 'all',
metric.filter = 'all')
# Project ensemble models (building single projections)
myBiomodEMProj <- BIOMOD_EnsembleForecasting(bm.em = myBiomodEM,
proj.name = 'CurrentEM',
new.env = myExpl,
models.chosen = 'all',
metric.binary = 'all',
metric.filter = 'all')
myBiomodEMProj
plot(myBiomodEMProj)
Create and evaluate an ensemble set of models and predictions
Description
This function allows to combine a range of models built with the
BIOMOD_Modeling
function in one (or several) ensemble model. Modeling
uncertainty can be assessed as well as variables importance, ensemble predictions can be
evaluated against original data, and created ensemble models can be projected over new
conditions (see Details).
Usage
BIOMOD_EnsembleModeling(
bm.mod,
models.chosen = "all",
em.by = "PA+run",
em.algo,
metric.select = "all",
metric.select.thresh = NULL,
metric.select.table = NULL,
metric.select.dataset = NULL,
metric.eval = c("KAPPA", "TSS", "ROC"),
var.import = 0,
EMci.alpha = 0.05,
EMwmean.decay = "proportional",
nb.cpu = 1,
seed.val = NULL,
do.progress = TRUE,
prob.mean,
prob.median,
prob.cv,
prob.ci,
committee.averaging,
prob.mean.weight,
prob.mean.weight.decay,
prob.ci.alpha
)
Arguments
bm.mod |
a |
models.chosen |
a |
em.by |
a |
em.algo |
a |
metric.select |
a |
metric.select.thresh |
(optional, default |
metric.select.table |
(optional, default |
metric.select.dataset |
(optional, default |
metric.eval |
a |
var.import |
(optional, default |
EMci.alpha |
(optional, default |
EMwmean.decay |
(optional, default |
nb.cpu |
(optional, default |
seed.val |
(optional, default |
do.progress |
(optional, default |
prob.mean |
(deprecated, please use |
prob.median |
(deprecated, please use |
prob.cv |
(deprecated, please use |
prob.ci |
(deprecated, please use |
committee.averaging |
(deprecated, please use |
prob.mean.weight |
(deprecated, please use |
prob.mean.weight.decay |
(deprecated, please use
|
prob.ci.alpha |
(deprecated, please use |
Details
- Models sub-selection (
models.chosen
) Applying
get_built_models
function to thebm.mod
object gives the names of the single models created with theBIOMOD_Modeling
function. Themodels.chosen
argument can take either a sub-selection of these single model names, or theall
default value, to decide which single models will be used for the ensemble model building.- Models assembly rules (
em.by
) Single models built with the
BIOMOD_Modeling
function can be combined in 5 different ways to obtain ensemble models :-
PA+run
: each combination of pseudo-absence and repetition datasets is done, merging algorithms together -
PA+algo
: each combination of pseudo-absence and algorithm datasets is done, merging repetitions together -
PA
: pseudo-absence datasets are considered individually, merging algorithms and repetitions together -
algo
: algorithm datasets are considered individually, merging pseudo-absence and repetitions together -
all
: all models are combined into one
Hence, depending on the chosen method, the number of ensemble models built will vary.
Be aware that if no evaluation data was given to theBIOMOD_FormatingData
function, some ensemble model evaluations may be biased due to difference in data used for single model evaluations. Be aware that all of these combinations are allowed, but some may not make sense depending mainly on how pseudo-absence datasets have been built and whether all of them have been used for all single models or not (seePA.nb.absences
andmodels.pa
parameters inBIOMOD_FormatingData
andBIOMOD_Modeling
functions respectively).-
- Evaluation metrics
-
-
metric.select
: the selected metrics must be chosen among the ones used within theBIOMOD_Modeling
function to build themodel.output
object, unlessmetric.select = 'user.defined'
and therefore values will be provided through themetric.select.table
parameter.
In the case of the selection of several metrics, they will be used at different steps of the ensemble modeling function :remove low quality single models, having a score lower than
metric.select.thresh
perform the binary transformation needed if
'EMca'
was given to argumentem.algo
weight models if
'EMwmean'
was given to argumentem.algo
-
metric.select.thresh
: as many values as evaluation metrics selected with themetric.select
parameter, and defining the corresponding quality thresholds below which the single models will be excluded from the ensemble model building. -
metric.select.table
: adata.frame
must be given ifmetric.select = 'user.defined'
to allow the use of evaluation metrics other than those calculated within biomod2. Thedata.frame
must contain as many columns asmodels.chosen
with matching names, and as many rows as evaluation metrics to be used. The number of rows must match the length of themetric.select.thresh
parameter. The values contained in thedata.frame
will be compared to those defined inmetric.select.thresh
to remove low quality single models from the ensemble model building. -
metric.select.dataset
: acharacter
determining the dataset which evaluation metric should be used to filter and/or weigh the ensemble models. Should be amongevaluation
,validation
orcalibration
. By defaultBIOMOD_EnsembleModeling
will use the validation dataset unless no validation is available in which case calibration dataset are used. -
metric.eval
: the selected metrics will be used to validate/evaluate the ensemble models built
-
- Ensemble-models algorithms
The set of models to be calibrated on the data.
6 modeling techniques are currently available :-
EMmean
: Mean of probabilities over the selected models. Old name:prob.mean
-
EMmedian
: Median of probabilities over the selected models
The median is less sensitive to outliers than the mean, however it requires more computation time and memory as it loads all predictions (on the contrary to the mean or the weighted mean). Old name:prob.median
-
EMcv
: Coefficient of variation (sd / mean) of probabilities over the selected models
This model is not scaled. It will be evaluated like all other ensemble models although its interpretation will be obviously different. CV is a measure of uncertainty rather a measure of probability of occurrence. If the CV gets a high evaluation score, it means that the uncertainty is high where the species is observed (which might not be a good feature of the model). The lower is the score, the better are the models. CV is a nice complement to the mean probability. Old name:prob.cv
-
EMci
&EMci.alpha
: Confidence interval around the mean of probabilities of the selected models
It is also a nice complement to the mean probability. It creates 2 ensemble models :-
LOWER : there is less than
100 * EMci.alpha / 2
% of chance to get probabilities lower than the given ones -
UPPER : there is less than
100 * EMci.alpha / 2
% of chance to get probabilities upper than the given ones
These intervals are calculated with the following function :
I_c = [ \bar{x} - \frac{t_\alpha sd }{ \sqrt{n} }; \bar{x} + \frac{t_\alpha sd }{ \sqrt{n} }]
Old parameter name:prob.ci
&prob.ci.alpha
-
-
EMca
: Probabilities from the selected models are first transformed into binary data according to the thresholds defined when building themodel.output
object with theBIOMOD_Modeling
function, maximizing the evaluation metric score over the testing dataset. The committee averaging score is obtained by taking the average of these binary predictions. It is built on the analogy of a simple vote :each single model votes for the species being either present (
1
) or absent (0
)the sum of
1
is then divided by the number of single models voting
The interesting feature of this measure is that it gives both a prediction and a measure of uncertainty. When the prediction is close to
0
or1
, it means that all models agree to predict0
or1
respectively. When the prediction is around0.5
, it means that half the models predict1
and the other half0
.
Old parameter name:committee.averaging
-
EMwmean
&EMwmean.decay
: Probabilities from the selected models are weighted according to their evaluation scores obtained when building themodel.output
object with theBIOMOD_Modeling
function (better a model is, more importance it has in the ensemble) and summed.
Old parameter name:prob.mean.weight
&prob.mean.weight.decay
The
EMwmean.decay
is the ratio between a weight and the next or previous one. The formula is :W = W(-1) * EMwmean.decay
. For example, with the value of1.6
and4
weights wanted, the relative importance of the weights will be1/1.6/2.56(=1.6*1.6)/4.096(=2.56*1.6)
from the weakest to the strongest, and gives0.11/0.17/0.275/0.445
considering that the sum of the weights is equal to one. The lower theEMwmean.decay
, the smoother the differences between the weights enhancing a weak discrimination between models.If
EMwmean.decay = 'proportional'
, the weights are assigned to each model proportionally to their evaluation scores. The discrimination is fairer than using the decay method where close scores can have strongly diverging weights, while the proportional method would assign them similar weights.It is also possible to define the
EMwmean.decay
parameter as a function that will be applied to single models scores and transform them into weights. For example, ifEMwmean.decay = function(x) {x^2}
, the squared of evaluation score of each model will be used to weight the models predictions.-
Value
A BIOMOD.ensemble.models.out
object containing models outputs, or links to saved
outputs.
Models outputs are stored out of R (for memory storage reasons) in 2 different
folders created in the current working directory :
a models folder, named after the
resp.name
argument ofBIOMOD_FormatingData
, and containing all ensemble modelsa hidden folder, named
.BIOMOD_DATA
, and containing outputs related files (original dataset, calibration lines, pseudo-absences selected, predictions, variables importance, evaluation values...), that can be retrieved withget_[...]
orload
functions, and used by other biomod2 functions, likeBIOMOD_EnsembleForecasting
Author(s)
Wilfried Thuiller, Damien Georges, Robin Engler
See Also
BIOMOD_FormatingData
, bm_ModelingOptions
,
bm_CrossValidation
, bm_VariablesImportance
,
BIOMOD_Modeling
, BIOMOD_EnsembleForecasting
,
bm_PlotEvalMean
, bm_PlotEvalBoxplot
,
bm_PlotVarImpBoxplot
, bm_PlotResponseCurves
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_FormatingData()
,
BIOMOD_LoadModels()
,
BIOMOD_Modeling()
,
BIOMOD_Projection()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
## ----------------------------------------------------------------------- #
# Model ensemble models
myBiomodEM <- BIOMOD_EnsembleModeling(bm.mod = myBiomodModelOut,
models.chosen = 'all',
em.by = 'all',
em.algo = c('EMmean', 'EMca'),
metric.select = c('TSS'),
metric.select.thresh = c(0.7),
metric.eval = c('TSS', 'ROC'),
var.import = 3,
seed.val = 42)
myBiomodEM
# Get evaluation scores & variables importance
get_evaluations(myBiomodEM)
get_variables_importance(myBiomodEM)
# Represent evaluation scores
bm_PlotEvalMean(bm.out = myBiomodEM, dataset = 'calibration')
bm_PlotEvalBoxplot(bm.out = myBiomodEM, group.by = c('algo', 'algo'))
# # Represent variables importance
# bm_PlotVarImpBoxplot(bm.out = myBiomodEM, group.by = c('expl.var', 'algo', 'algo'))
# bm_PlotVarImpBoxplot(bm.out = myBiomodEM, group.by = c('expl.var', 'algo', 'merged.by.PA'))
# bm_PlotVarImpBoxplot(bm.out = myBiomodEM, group.by = c('algo', 'expl.var', 'merged.by.PA'))
# # Represent response curves
# bm_PlotResponseCurves(bm.out = myBiomodEM,
# models.chosen = get_built_models(myBiomodEM),
# fixed.var = 'median')
# bm_PlotResponseCurves(bm.out = myBiomodEM,
# models.chosen = get_built_models(myBiomodEM),
# fixed.var = 'min')
# bm_PlotResponseCurves(bm.out = myBiomodEM,
# models.chosen = get_built_models(myBiomodEM, algo = 'EMmean'),
# fixed.var = 'median',
# do.bivariate = TRUE)
Format input data, and select pseudo-absences if wanted, for usage in biomod2
Description
This function gathers together all input data needed (xy, presences/absences, explanatory variables, and the same for evaluation data if available) to run biomod2 models. It allows to select pseudo-absences if no absence data is available, with different strategies (see Details).
Usage
BIOMOD_FormatingData(
resp.name,
resp.var,
expl.var,
dir.name = ".",
resp.xy = NULL,
eval.resp.var = NULL,
eval.expl.var = NULL,
eval.resp.xy = NULL,
PA.nb.rep = 0,
PA.nb.absences = 1000,
PA.strategy = NULL,
PA.dist.min = 0,
PA.dist.max = NULL,
PA.sre.quant = 0.025,
PA.fact.aggr = NULL,
PA.user.table = NULL,
na.rm = TRUE,
filter.raster = FALSE,
seed.val = NULL
)
Arguments
resp.name |
a |
resp.var |
a |
expl.var |
a |
dir.name |
(optional, default |
resp.xy |
(optional, default |
eval.resp.var |
(optional, default |
eval.expl.var |
(optional, default |
eval.resp.xy |
(optional, default |
PA.nb.rep |
(optional, default |
PA.nb.absences |
(optional, default |
PA.strategy |
(optional, default |
PA.dist.min |
(optional, default |
PA.dist.max |
(optional, default |
PA.sre.quant |
(optional, default |
PA.fact.aggr |
(optional, default |
PA.user.table |
(optional, default |
na.rm |
(optional, default |
filter.raster |
(optional, default |
seed.val |
(optional, default |
Details
This function gathers and formats all input data needed to run biomod2 models. It
supports different kind of inputs (e.g. matrix
,
SpatVector
, SpatRaster
)
and provides different methods to select pseudo-absences if needed.
Concerning explanatory variables and XY coordinates :
if
SpatRaster
,RasterLayer
orRasterStack
provided forexpl.var
oreval.expl.var
,
biomod2 will extract the corresponding values from XY coordinates provided :either through
resp.xy
oreval.resp.xy
respectivelyor
resp.var
oreval.resp.var
, if provided asSpatVector
orSpatialPointsDataFrame
Be sure to give the objects containing XY coordinates in the same projection system than the raster objects !
if
data.frame
ormatrix
provided forexpl.var
oreval.expl.var
,
biomod2 will simply merge it (cbind
) withresp.var
without considering XY coordinates.
Be sure to give explanatory and response values in the same row order !
Concerning pseudo-absence selection (see bm_PseudoAbsences
) :
if both presence and absence data are available, and there is enough absences : set
PA.nb.rep = 0
and no pseudo-absence will be selected.if no absence data is available, several pseudo-absence repetitions are recommended (to estimate the effect of pseudo-absence selection), as well as high number of pseudo-absence points.
Be sure not to select more pseudo-absence points than maximum number of pixels in the studied area !it is possible now to create several pseudo-absence repetitions with different number of points, BUT with the same sampling strategy.
- Response variable
-
biomod2 models single species at a time (no multi-species). Hence,
resp.var
must be a uni-dimensional object (either avector
, a one-columnmatrix
,data.frame
, aSpatVector
(without associated data - if presence-only), aSpatialPoints
(if presence-only), aSpatialPointsDataFrame
orSpatVector
object), containing values among :-
1
: presences -
0
: true absences (if any) -
NA
: no information point (might be used to select pseudo-absences if any)
If no true absences are available, pseudo-absence selection must be done.
Ifresp.var
is a non-spatial object (vector
,matrix
ordata.frame
), XY coordinates must be provided throughresp.xy
.
If pseudo-absence points are to be selected,NA
points must be provided in order to select pseudo-absences among them. -
- Explanatory variables
-
Factorial variables are allowed, but might lead to some pseudo-absence strategy or models omissions (e.g.
sre
). - Evaluation data
-
Although biomod2 provides tools to automatically divide dataset into calibration and validation parts through the modeling process (see
CV.[..]
parameters inBIOMOD_Modeling
function ; orbm_CrossValidation function
), it is also possible (and strongly advised) to directly provide two independent datasets, one for calibration/validation and one for evaluation - Pseudo-absence selection (see
bm_PseudoAbsences
) -
If no true absences are available, pseudo-absences must be selected from the background data, meaning data there is no information whether the species of interest occurs or not. It corresponds either to the remaining pixels of the
expl.var
(if provided as aSpatRaster
orRasterSatck
) or to the points identified asNA
inresp.var
(ifexpl.var
provided as amatrix
ordata.frame
).
Several methods are available to do this selection :- random
all points of initial background are pseudo-absence candidates.
PA.nb.absences
are drawn randomly, for eachPA.nb.rep
requested.- sre
pseudo-absences have to be selected in conditions (combination of explanatory variables) that differ in a defined proportion (
PA.sre.quant
) from those of presence points. A Surface Range Envelop model is first run over the species of interest (seebm_SRE
), and pseudo-absences are selected outside this envelop.
This case is appropriate when all the species climatic niche has been sampled, otherwise it may lead to over-optimistic model evaluations and predictions !- disk
pseudo-absences are selected within circles around presence points defined by
PA.dist.min
andPA.dist.max
distance values (in the same projection system units ascoord
andexpl.var
). It allows to select pseudo-absence points that are not too close to (avoid same niche and pseudo-replication) or too far (localized sampling strategy) from presences.- user.defined
pseudo-absences are defined in advance and given as
data.frame
through thePA.user.table
parameter.
Value
A BIOMOD.formated.data
object that can be used to build species distribution
model(s) with the BIOMOD_Modeling
function.
print/show
,
plot
and
summary
functions
are available to have a summary of the created object.
Author(s)
Damien Georges, Wilfried Thuiller
See Also
bm_PseudoAbsences
, BIOMOD_Modeling
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_EnsembleModeling()
,
BIOMOD_LoadModels()
,
BIOMOD_Modeling()
,
BIOMOD_Projection()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------#
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
myBiomodData
summary(myBiomodData)
plot(myBiomodData)
# ---------------------------------------------------------------#
# # Transform true absences into potential pseudo-absences
# myResp.PA <- ifelse(myResp == 1, 1, NA)
#
# # Format Data with pseudo-absences : random method
# myBiomodData.r <- BIOMOD_FormatingData(resp.var = myResp.PA,
# expl.var = myExpl,
# resp.xy = myRespXY,
# resp.name = myRespName,
# PA.nb.rep = 4,
# PA.nb.absences = 1000,
# PA.strategy = 'random')
#
# # Format Data with pseudo-absences : disk method
# myBiomodData.d <- BIOMOD_FormatingData(resp.var = myResp.PA,
# expl.var = myExpl,
# resp.xy = myRespXY,
# resp.name = myRespName,
# PA.nb.rep = 4,
# PA.nb.absences = 500,
# PA.strategy = 'disk',
# PA.dist.min = 5,
# PA.dist.max = 35)
#
# # Format Data with pseudo-absences : SRE method
# myBiomodData.s <- BIOMOD_FormatingData(resp.var = myResp.PA,
# expl.var = myExpl,
# resp.xy = myRespXY,
# resp.name = myRespName,
# PA.nb.rep = 4,
# PA.nb.absences = 1000,
# PA.strategy = 'sre',
# PA.sre.quant = 0.025)
#
# # Format Data with pseudo-absences : user.defined method
# myPAtable <- data.frame(PA1 = ifelse(myResp == 1, TRUE, FALSE),
# PA2 = ifelse(myResp == 1, TRUE, FALSE))
# for (i in 1:ncol(myPAtable)) myPAtable[sample(which(myPAtable[, i] == FALSE), 500), i] = TRUE
# myBiomodData.u <- BIOMOD_FormatingData(resp.var = myResp.PA,
# expl.var = myExpl,
# resp.xy = myRespXY,
# resp.name = myRespName,
# PA.strategy = 'user.defined',
# PA.user.table = myPAtable)
#
# myBiomodData.r
# myBiomodData.d
# myBiomodData.s
# myBiomodData.u
# plot(myBiomodData.r)
# plot(myBiomodData.d)
# plot(myBiomodData.s)
# plot(myBiomodData.u)
# ---------------------------------------------------------------#
# # Select multiple sets of pseudo-absences
#
# # Transform true absences into potential pseudo-absences
# myResp.PA <- ifelse(myResp == 1, 1, NA)
#
# # Format Data with pseudo-absences : random method
# myBiomodData.multi <- BIOMOD_FormatingData(resp.var = myResp.PA,
# expl.var = myExpl,
# resp.xy = myRespXY,
# resp.name = myRespName,
# PA.nb.rep = 4,
# PA.nb.absences = c(1000, 500, 500, 200),
# PA.strategy = 'random')
# myBiomodData.multi
# summary(myBiomodData.multi)
# plot(myBiomodData.multi)
Load species distribution models built with biomod2
Description
This function loads individual models built with BIOMOD_Modeling
or BIOMOD_EnsembleModeling
functions.
Usage
BIOMOD_LoadModels(
bm.out,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
merged.by.PA = NULL,
merged.by.run = NULL,
merged.by.algo = NULL,
filtered.by = NULL
)
Arguments
bm.out |
a |
full.name |
(optional, default |
PA |
(optional, default |
run |
(optional, default |
algo |
(optional, default |
merged.by.PA |
(optional, default |
merged.by.run |
(optional, default |
merged.by.algo |
(optional, default |
filtered.by |
(optional, default |
Details
This function might be of particular use to load models and make response plot analyses.
Running the function providing only bm.out
argument will load all models built by the
BIOMOD_Modeling
or BIOMOD_EnsembleModeling
function, but a
subselection of models can be done using the additional arguments (full.name
, PA
,
run
, algo
, merged.by.PA
, merged.by.run
, merged.by.algo
,
filtered.by
).
Value
A vector
containing the names of the loaded models.
Author(s)
Damien Georges
See Also
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_EnsembleModeling()
,
BIOMOD_FormatingData()
,
BIOMOD_Modeling()
,
BIOMOD_Projection()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------
# Loading some models built
BIOMOD_LoadModels(bm.out = myBiomodModelOut, algo = 'RF')
Run a range of species distribution models
Description
This function allows to calibrate and evaluate a range of modeling techniques for a given species distribution. The dataset can be split up in calibration/validation parts, and the predictive power of the different models can be estimated using a range of evaluation metrics (see Details).
Usage
BIOMOD_Modeling(
bm.format,
modeling.id = as.character(format(Sys.time(), "%s")),
models = c("ANN", "CTA", "FDA", "GAM", "GBM", "GLM", "MARS", "MAXENT", "MAXNET", "RF",
"SRE", "XGBOOST"),
models.pa = NULL,
CV.strategy = "random",
CV.nb.rep = 1,
CV.perc = NULL,
CV.k = NULL,
CV.balance = NULL,
CV.env.var = NULL,
CV.strat = NULL,
CV.user.table = NULL,
CV.do.full.models = TRUE,
OPT.data.type = "binary",
OPT.strategy = "default",
OPT.user.val = NULL,
OPT.user.base = "bigboss",
OPT.user = NULL,
bm.options,
nb.rep,
data.split.perc,
data.split.table,
do.full.models,
weights = NULL,
prevalence = NULL,
metric.eval = c("KAPPA", "TSS", "ROC"),
var.import = 0,
scale.models = FALSE,
nb.cpu = 1,
seed.val = NULL,
do.progress = TRUE
)
Arguments
bm.format |
a |
modeling.id |
a |
models |
a |
models.pa |
(optional, default |
CV.strategy |
a |
CV.nb.rep |
(optional, default |
CV.perc |
(optional, default |
CV.k |
(optional, default |
CV.balance |
(optional, default |
CV.env.var |
(optional) |
CV.strat |
(optional, default |
CV.user.table |
(optional, default |
CV.do.full.models |
(optional, default |
OPT.data.type |
a |
OPT.strategy |
a |
OPT.user.val |
(optional, default |
OPT.user.base |
(optional, default |
OPT.user |
(optional, default |
bm.options |
deprecated, now called |
nb.rep |
deprecated, now called |
data.split.perc |
deprecated, now called |
data.split.table |
deprecated, now called |
do.full.models |
deprecated, now called |
weights |
(optional, default |
prevalence |
(optional, default |
metric.eval |
a |
var.import |
(optional, default |
scale.models |
(optional, default |
nb.cpu |
(optional, default |
seed.val |
(optional, default |
do.progress |
(optional, default |
Details
- bm.format
If pseudo absences have been added to the original dataset (see
BIOMOD_FormatingData
),
PA.nb.rep *(nb.rep + 1)
models will be created.- models
The set of models to be calibrated on the data. 12 modeling techniques are currently available :
-
ANN
: Artificial Neural Network (nnet
) -
CTA
: Classification Tree Analysis (rpart
) -
FDA
: Flexible Discriminant Analysis (fda
) -
GAM
: Generalized Additive Model (gam
,gam
orbam
)
(seebm_ModelingOptions for details on algorithm selection
) -
GBM
: Generalized Boosting Model, or usually called Boosted Regression Trees (gbm
) -
GLM
: Generalized Linear Model (glm
) -
MARS
: Multiple Adaptive Regression Splines (earth
) -
MAXENT
: Maximum Entropy (see Maxent website) -
MAXNET
: Maximum Entropy (maxnet
) -
RF
: Random Forest (randomForest
) -
RFd
: Random Forest downsampled (randomForest
) -
SRE
: Surface Range Envelop or usually called BIOCLIM (bm_SRE
) -
XGBOOST
: eXtreme Gradient Boosting Training (xgboost
)
-
- models.pa
Different models might respond differently to different numbers of pseudo-absences. It is possible to create sets of pseudo-absences with different numbers of points (see
BIOMOD_FormatingData
) and to assign only some of these datasets to each single model.- CV.[...] parameters
Different methods are available to calibrate/validate the single models (see
bm_CrossValidation
).- OPT.[...] parameters
Different methods are available to parameterize the single models (see
bm_ModelingOptions
andBIOMOD.options.dataset
). Note that onlybinary
data type is allowed currently.-
default
: only default parameter values of default parameters of the single models functions are retrieved. Nothing is changed so it might not give good results. -
bigboss
: uses parameters pre-defined by biomod2 team and that are available in the datasetOptionsBigboss
.
to be optimized in near future -
user.defined
: updates default or bigboss parameters with some parameters values defined by the user (but matching the format of aBIOMOD.models.options
object) -
tuned
: calling thebm_Tuning
function to try and optimize some default values
-
- weights & prevalence
More or less weight can be given to some specific observations.
If
weights = prevalence = NULL
, each observation (presence or absence) will have the same weight, no matter the total number of presences and absences.If
prevalence = 0.5
, presences and absences will be weighted equally (i.e. the weighted sum of presences equals the weighted sum of absences).If
prevalence
is set below (above)0.5
, more weight will be given to absences (presences).If
weights
is defined,prevalence
argument will be ignored, and each observation will have its own weight.If pseudo-absences have been generated (
PA.nb.rep > 0
inBIOMOD_FormatingData
), weights are by default calculated such thatprevalence = 0.5
. Automatically createdweights
will beinteger
values to prevent some modeling issues.-
NOTE THAT
MAXENT
,MAXNET
,RF
,RFd
andSRE
models do not take weights into account.
- metric.eval
-
- simple
-
-
POD
: Probability of detection (hit rate) -
FAR
: False alarm ratio -
POFD
: Probability of false detection (fall-out) -
SR
: Success ratio -
ACCURACY
: Accuracy (fraction correct) -
BIAS
: Bias score (frequency bias)
-
- complex
-
-
ROC
: Relative operating characteristic -
TSS
: True skill statistic (Hanssen and Kuipers discriminant, Peirce's skill score) -
KAPPA
: Cohen's Kappa (Heidke skill score) -
OR
: Odds Ratio -
ORSS
: Odds ratio skill score (Yule's Q) -
CSI
: Critical success index (threat score) -
ETS
: Equitable threat score (Gilbert skill score)
-
- presence-only
-
-
BOYCE
: Boyce index -
MPA
: Minimal predicted area (cutoff optimizing MPA to predict 90% of presences)
-
Optimal value of each method can be obtained with the
get_optim_value
function. Several evaluation metrics can be selected. Please refer to the CAWRC website (section "Methods for dichotomous forecasts") to get detailed description of each metric. Results after modeling can be obtained through theget_evaluations
function.
Evaluation metric are calculated on the calibrating data (columncalibration
), on the cross-validation data (columnvalidation
) or on the evaluation data (columnevaluation
).
For cross-validation data, seeCV.[...]
parameters inBIOMOD_Modeling
function ; for evaluation data, seeeval.[...]
parameters inBIOMOD_FormatingData
. - var.import
A value characterizing how much each variable has an impact on each model predictions can be calculated by randomizing the variable of interest and computing the correlation between original and shuffled variables (see
bm_VariablesImportance
).- scale.models
This parameter is quite experimental and it is recommended not to use it. It may lead to reduction in projection scale amplitude. Some categorical models always have to be scaled (
FDA
,ANN
), but it may be interesting to scale all computed models to ensure comparable predictions (0-1000
range). It might be particularly useful when doing ensemble forecasting to remove the scale prediction effect (the more extended projections are, the more they influence ensemble forecasting results).
Value
A BIOMOD.models.out
object containing models outputs, or links to saved outputs.
Models outputs are stored out of R (for memory storage reasons) in 2 different folders
created in the current working directory :
a models folder, named after the
resp.name
argument ofBIOMOD_FormatingData
, and containing all calibrated models for each repetition and pseudo-absence runa hidden folder, named
.BIOMOD_DATA
, and containing outputs related files (original dataset, calibration lines, pseudo-absences selected, predictions, variables importance, evaluation values...), that can be retrieved withget_[...]
orload
functions, and used by other biomod2 functions, likeBIOMOD_Projection
orBIOMOD_EnsembleModeling
Author(s)
Wilfried Thuiller, Damien Georges, Robin Engler
See Also
glm
, gam
,
gam
, bam
, gbm
,
rpart
, nnet
,
fda
, earth
,
randomForest
, maxnet
,
xgboost
, BIOMOD_FormatingData
,
bm_ModelingOptions
, bm_Tuning
,
bm_CrossValidation
,
bm_VariablesImportance
, BIOMOD_Projection
,
BIOMOD_EnsembleModeling
, bm_PlotEvalMean
,
bm_PlotEvalBoxplot
, bm_PlotVarImpBoxplot
,
bm_PlotResponseCurves
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_EnsembleModeling()
,
BIOMOD_FormatingData()
,
BIOMOD_LoadModels()
,
BIOMOD_Projection()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# ---------------------------------------------------------------------------- #
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 2,
seed.val = 42)
myBiomodModelOut
# Get evaluation scores & variables importance
get_evaluations(myBiomodModelOut)
get_variables_importance(myBiomodModelOut)
# Represent evaluation scores
bm_PlotEvalMean(bm.out = myBiomodModelOut, dataset = 'calibration')
bm_PlotEvalMean(bm.out = myBiomodModelOut, dataset = 'validation')
bm_PlotEvalBoxplot(bm.out = myBiomodModelOut, group.by = c('algo', 'run'))
# # Represent variables importance
# bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('expl.var', 'algo', 'algo'))
# bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('expl.var', 'algo', 'run'))
# bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('algo', 'expl.var', 'run'))
# # Represent response curves
# mods <- get_built_models(myBiomodModelOut, run = 'RUN1')
# bm_PlotResponseCurves(bm.out = myBiomodModelOut,
# models.chosen = mods,
# fixed.var = 'median')
# bm_PlotResponseCurves(bm.out = myBiomodModelOut,
# models.chosen = mods,
# fixed.var = 'min')
# mods <- get_built_models(myBiomodModelOut, full.name = 'GuloGulo_allData_RUN2_RF')
# bm_PlotResponseCurves(bm.out = myBiomodModelOut,
# models.chosen = mods,
# fixed.var = 'median',
# do.bivariate = TRUE)
BIOMOD_ModelingOptions
Description
Deprecated function name for
bm_ModelingOptions
Usage
BIOMOD_ModelingOptions(...)
Arguments
... |
Additional arguments |
See Also
BIOMOD_PresenceOnly
Description
Deprecated function name for
bm_FindOptimStat
Usage
BIOMOD_PresenceOnly(...)
Arguments
... |
Additional arguments |
See Also
Project a range of calibrated species distribution models onto new environment
Description
This function allows to project a range of models built with the
BIOMOD_Modeling
function onto new environmental data (which can
represent new areas, resolution or time scales for example).
Usage
BIOMOD_Projection(
bm.mod,
proj.name,
new.env,
new.env.xy = NULL,
models.chosen = "all",
metric.binary = NULL,
metric.filter = NULL,
compress = TRUE,
build.clamping.mask = TRUE,
nb.cpu = 1,
seed.val = NULL,
...
)
Arguments
bm.mod |
a |
proj.name |
a |
new.env |
A |
new.env.xy |
(optional, default |
models.chosen |
a |
metric.binary |
(optional, default |
metric.filter |
(optional, default |
compress |
(optional, default |
build.clamping.mask |
(optional, default |
nb.cpu |
(optional, default |
seed.val |
(optional, default |
... |
(optional, see Details)) |
Details
If models.chosen = 'all'
, projections are done for all calibration and pseudo absences
runs if applicable.
These projections may be used later by the
BIOMOD_EnsembleForecasting
function.
If build.clamping.mask = TRUE
, a raster file will be saved within the projection folder.
This mask values will correspond to the number of variables in each pixel that are out of their
calibration / validation range, identifying locations where predictions are uncertain.
...
can take the following values :
-
omit.na
: alogical
value defining whether all not fully referenced environmental points will getNA
as predictions or not -
on_0_1000
: alogical
value defining whether0 - 1
probabilities are to be converted to0 - 1000
scale to save memory on backup -
do.stack
: alogical
value defining whether all projections are to be saved as oneSpatRaster
object or severalSpatRaster
files (the default if projections are too heavy to be all loaded at once in memory) -
keep.in.memory
: alogical
value defining whether all projections are to be kept loaded at once in memory, or only links pointing to hard drive are to be returned -
output.format
: acharacter
value corresponding to the projections saving format on hard drive, must be either.grd
,.img
,.tif
or.RData
(the default ifnew.env
is given asmatrix
ordata.frame
)
Value
A BIOMOD.projection.out
object containing models projections, or links to saved
outputs.
Models projections are stored out of R (for memory storage reasons) in
proj.name
folder created in the current working directory :
the output is a
data.frame
ifnew.env
is amatrix
or adata.frame
it is a
SpatRaster
ifnew.env
is aSpatRaster
(or severalSpatRaster
objects, ifnew.env
is too large)raw projections, as well as binary and filtered projections (if asked), are saved in the
proj.name
folder
Author(s)
Wilfried Thuiller, Damien Georges
See Also
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
BIOMOD_RangeSize
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_EnsembleModeling()
,
BIOMOD_FormatingData()
,
BIOMOD_LoadModels()
,
BIOMOD_Modeling()
,
BIOMOD_RangeSize()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------#
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------#
# Project single models
file.proj <- paste0(myRespName, "/proj_Current/", myRespName, ".Current.projection.out")
if (file.exists(file.proj)) {
myBiomodProj <- get(load(file.proj))
} else {
myBiomodProj <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'Current',
new.env = myExpl,
models.chosen = 'all')
}
myBiomodProj
plot(myBiomodProj)
Analyze the range size differences between projections of species distribution models
Description
This function allows to calculate the absolute number of locations (pixels) lost, stable and gained, as well as the corresponding relative proportions, between two (or more) binary projections of (ensemble) species distribution models (which can represent new time scales or environmental scenarios for example).
Usage
BIOMOD_RangeSize(proj.current, proj.future)
## S4 method for signature 'data.frame,data.frame'
BIOMOD_RangeSize(proj.current, proj.future)
## S4 method for signature 'SpatRaster,SpatRaster'
BIOMOD_RangeSize(proj.current, proj.future)
Arguments
proj.current |
a |
proj.future |
a |
Details
Note that this function is only relevant to compare binary projections, made on the
same area with the same resolution.
Comparison between proj.current
and proj.future
depends
on the number of projection in both objects:
proj.current | proj.future | Comparison |
1 projection (e.g. data.frame with 1 column, SpatRaster with 1 layer) | 1 projection (e.g. data.frame with 1 column, SpatRaster with 1 layer) | comparison of both projection (e.g. current vs future conditions for the same model ; current vs current condition for two different models) |
n projections (e.g. data.frame with n column, SpatRaster with n layer) | n projections (e.g. data.frame with n column, SpatRaster with n layer) | comparing projection i in proj.current to projection i in proj.future (e.g. comparing current vs future condition for n models) |
1 projection (e.g. data.frame with 1 column, SpatRaster with 1 layer) | n projections (e.g. data.frame with n column, SpatRaster with n layer) | comparing projection in proj.current to each projection in proj.future (e.g. comparing current vs n different future condition (e.g. climate change scenario) for 1 model) |
Diff.By.Pixel
object is obtained by applying the simple following formula :
proj.future - 2 * proj.current
Value
A list
containing two objects :
- Compt.By.Species
a
data.frame
containing the summary of range change for each comparison-
Loss
: number of pixels predicted to be lost -
Stable0
: number of pixels not currently occupied and not predicted to be -
Stable1
: number of pixels currently occupied and predicted to remain occupied -
Gain
: number of pixels predicted to be gained -
PercLoss
: percentage of pixels currently occupied and predicted to be lost (Loss / (Loss + Stable1)
) -
PercGain
: percentage of pixels predicted to be gained compare to the number of pixels currently occupied (Gain / (Loss + Stable1)
) -
SpeciesRangeChange
: percentage of pixels predicted to change (loss or gain) compare to the number of pixels currently occupied (PercGain - PercLoss
) -
CurrentRangeSize
: number of pixels currently occupied -
FutureRangeSize0Disp
: number of pixels predicted to be occupied, assuming no migration -
FutureRangeSize1Disp
: number of pixels predicted to be occupied, assuming migration
-
- Diff.By.Pixel
an object in the same form than the input data (
proj.current
andproj.future
) and containing a value for each point/pixel of each comparison among :-
-2
: predicted to be lost -
-1
: predicted to remain occupied -
0
: predicted to remain unoccupied -
1
: predicted to be gained
-
Author(s)
Wilfried Thuiller, Damien Georges, Bruno Lafourcade
See Also
BIOMOD_Projection
, BIOMOD_EnsembleForecasting
,
bm_PlotRangeSize
Other Main functions:
BIOMOD_EnsembleForecasting()
,
BIOMOD_EnsembleModeling()
,
BIOMOD_FormatingData()
,
BIOMOD_LoadModels()
,
BIOMOD_Modeling()
,
BIOMOD_Projection()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# --------------------------------------------------------------- #
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
models.proj <- get_built_models(myBiomodModelOut, algo = "RF")
# Project single models
myBiomodProj <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'CurrentRangeSize',
new.env = myExpl,
models.chosen = models.proj,
metric.binary = 'all',
build.clamping.mask = TRUE)
# --------------------------------------------------------------- #
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_future)
myExplFuture <- terra::rast(bioclim_future)
# Project onto future conditions
myBiomodProjectionFuture <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'FutureRangeSize',
new.env = myExplFuture,
models.chosen = models.proj,
metric.binary = 'TSS')
# Load current and future binary projections
CurrentProj <- get_predictions(myBiomodProj,
metric.binary = "TSS",
model.as.col = TRUE)
FutureProj <- get_predictions(myBiomodProjectionFuture,
metric.binary = "TSS",
model.as.col = TRUE)
# Compute differences
myBiomodRangeSize <- BIOMOD_RangeSize(proj.current = CurrentProj, proj.future = FutureProj)
myBiomodRangeSize$Compt.By.Models
plot(myBiomodRangeSize$Diff.By.Pixel)
# Represent main results
bm_PlotRangeSize(bm.range = myBiomodRangeSize)
BIOMOD_Tuning
Description
Deprecated function name for
bm_Tuning
Usage
BIOMOD_Tuning(...)
Arguments
... |
Additional arguments |
See Also
BinaryTransformation
Description
Deprecated function name for
bm_BinaryTransformation
Usage
BinaryTransformation(...)
Arguments
... |
Additional arguments |
See Also
Presence-Absence data to build test SDM
Description
A dataset covering all the continent with presence/absence data for 6 mammal species. Presence/absence were derived from range maps downloaded at IUCN.
Usage
DataSpecies
Format
A data.frame
object with 2488 rows and 10 variables:
- X_WGS84
Longitude
- Y_WGS84
Latitude
- ConnochaetesGnou
Presence (1) or Absence (0) for black wildebeest
- GuloGulo
Presence (1) or Absence (0) for wolverine
- PantheraOnca
Presence (1) or Absence (0) for jaguar
- PteropusGiganteus
Presence (1) or Absence (0) for Indian flying fox
- TenrecEcaudatus
Presence (1) or Absence (0) for tailless tenrec
- VulpesVulpes
Presence (1) or Absence (0) for red fox
Find.Optim.Stat
Description
Deprecated function name for
bm_FindOptimStat
Usage
Find.Optim.Stat(...)
Arguments
... |
Additional arguments |
See Also
Single models package and functions
Description
A data.frame
containing for each single model available in biomod2
the package and functions to be called.
Usage
ModelsTable
Format
A data.frame
object with 12 rows and 5 variables:
- model
all single models that can be computed in biomod2
- type
data type associated to the models
- package
R
package used- func
function used in the
R
package- train
function called by caret for the tuning
All single models available are the following :
ANN (
nnet
)CTA (
rpart
)FDA (
fda
)GBM (
gbm
)GLM (
glm
)MARS (
earth
)MAXENT (see Maxent website)
MAXNET (
maxnet
)RF (
randomForest
)SRE (
bm_SRE
)XGBOOST (
xgboost
)
Bigboss pre-defined parameter values for single models
Description
A BIOMOD.models.options
object containing for each single model available in
biomod2 the parameter values pre-defined by biomod2 team.
Usage
OptionsBigboss
Format
A BIOMOD.models.options
object with some changed values :
ANN.binary.nnet.nnet
-
-
size = 5
-
decay = 0.1
-
trace = FALSE
-
rang = 0.1
-
maxit = 200
-
CTA.binary.rpart.rpart
-
-
method = 'class'
-
control = list(xval = 5, minbucket = 5, minsplit = 5, cp = 0.001, maxdepth = 10)
-
cost = NULL
-
FDA.binary.mda.fda
-
-
method = 'mars'
-
GAM.binary.gam.gam
GAM.binary.mgcv.bam
GAM.binary.mgcv.gam
-
-
family = binomial(link = 'logit')
-
method = 'GCV.Cp'
-
control = list(epsilon = 1e-06, trace = FALSE, maxit = 100)
-
GBM.binary.gbm.gbm
-
-
n.trees = 2500
-
interaction.depth = 7
-
n.minobsinnode = 5
-
shrinkage = 0.001
-
cv.folds = 3
-
keep.data = FALSE
-
n.cores = 1
-
GLM.binary.stats.glm
-
-
family = binomial(link = 'logit')
-
mustart = 0.5
-
control = glm.control(maxit = 50)
-
MARS.binary.earth.earth
-
-
glm = list(family = binomial(link = 'logit'))
-
ncross = 0
-
nk = NULL
-
penalty = 2
-
thresh = 0.001
-
nprune = NULL
-
pmethod = 'backward'
-
MAXENT.binary.MAXENT.MAXENT
-
-
path_to_maxent.jar = '.'
-
RF.binary.randomForest.randomForest
-
-
type = 'classification'
-
ntree = 500
-
mtry = 2
-
strata = factor(c(0, 1))
-
sampsize = NULL
-
nodesize = 5
-
maxnodes = NULL
-
RFd.binary.randomForest.randomForest
-
-
type = 'classification'
-
ntree = 500
-
mtry = 2
-
strata = factor(c(0, 1))
-
sampsize = NULL
-
nodesize = 5
-
maxnodes = NULL
-
SRE.binary.biomod2.bm_SRE
-
-
do.extrem = TRUE
-
XGBOOST.binary.xgboost.xgboost
-
-
params = list(max_depth = 2, eta = 1)
-
nthread = 2
-
nrounds = 4
-
objective = 'binary:logistic'
-
ProbDensFunc
Description
Deprecated function name for
bm_PlotRangeSize
Usage
ProbDensFunc(...)
Arguments
... |
Additional arguments |
See Also
Bioclimatic variables for SDM based on current condition
Description
A SpatRaster
with 5 bioclimatic variables commonly
used for SDM and describing current climate. Additional information available
at worldclim
Usage
bioclim_current
Format
A SpatRaster
with 5 layers:
- bio3
Isothermality
- bio4
Temperature Seasonality
- bio7
Temperature Annual Range
- bio11
Mean Temperature of Coldest Quarter
- bio12
Annual Precipitation
Bioclimatic variables for SDM based on future condition
Description
A SpatRaster
with 5 bioclimatic variables commonly
used for SDM and describing future climate based on old RCP scenarios at the
horizon 2080.
Usage
bioclim_future
Format
A SpatRaster
with 5 layers:
- bio3
Isothermality
- bio4
Temperature Seasonality
- bio7
Temperature Annual Range
- bio11
Mean Temperature of Coldest Quarter
- bio12
Annual Precipitation
Deprecated functions in package biomod2.
Description
The functions listed below are deprecated and were removed
in the current version. When possible, alternative functions with similar
functionality are mentioned. Help pages for deprecated functions are
available at help("<function>-deprecated")
.
Usage
BIOMOD_CrossValidation(...)
BIOMOD_ModelingOptions(...)
BIOMOD_PresenceOnly(...)
BIOMOD_Tuning(...)
BinaryTransformation(...)
calculate.stat(...)
Find.Optim.Stat(...)
getStatOptimValue(...)
makeFormula(...)
models_scores_graph(...)
ProbDensFunc(...)
response.plot2(...)
sample.factor.levels(...)
sre(...)
.transform.outputs.list(...)
variables_importance(...)
BIOMOD_CrossValidation
For BIOMOD_CrossValidation
use bm_CrossValidation
.
BIOMOD_ModelingOptions
For BIOMOD_ModelingOptions
use bm_ModelingOptions
.
BIOMOD_PresenceOnly
For BIOMOD_PresenceOnly
use bm_FindOptimStat
.
BIOMOD_Tuning
For BIOMOD_Tuning
use bm_Tuning
.
BinaryTransformation
For BinaryTransformation
use bm_BinaryTransformation
.
calculate.stat
For calculate.stat
use bm_CalculateStat
.
Find.Optim.Stat
For Find.Optim.Stat
use bm_FindOptimStat
.
getStatOptimValue
For getStatOptimValue
use get_optim_value
.
makeFormula
For makeFormula
use bm_MakeFormula
.
models_scores_graph
For models_scores_graph
use bm_PlotEvalMean
.
ProbDensFunc
For ProbDensFunc
use bm_PlotRangeSize
.
response.plot2
For response.plot2
use bm_PlotResponseCurves
.
sample.factor.levels
For sample.factor.levels
use bm_SampleFactorLevels
.
sre
For sre
use bm_SRE
.
.transform.outputs.list
For .transform.outputs.list
use .transform_outputs_list
.
variables_importance
For variables_importance
use bm_VariablesImportance
.
Ensemble model output object class (when running BIOMOD_EnsembleModeling()
)
Description
Class created by BIOMOD_EnsembleModeling
Usage
## S4 method for signature 'biomod2_ensemble_model'
show(object)
Arguments
object |
a |
Details
biomod2_model
is the basic object for biomod2 ensemble species distribution models.
All listed classes below are derived from biomod2_model
, and have a
model_class
slot specific value :
-
biomod2_ensemble_model
:model_class
isEM
-
EMmean_biomod2_model
:model_class
isEMmean
-
EMmedian_biomod2_model
:model_class
isEMmedian
-
EMcv_biomod2_model
:model_class
isEMcv
-
EMci_biomod2_model
:model_class
isEMci
-
EMca_biomod2_model
:model_class
isEMca
-
EMwmean_biomod2_model
:model_class
isEMwmean
Slots
modeling.id
a
character
corresponding to the name (ID) of the simulation setmodel_name
a
character
corresponding to the model namemodel_class
a
character
corresponding to the model classmodel_options
a
list
containing the model optionsmodel
the corresponding model object
scaling_model
the corresponding scaled model object
dir_name
a
character
corresponding to the modeling folderresp_name
a
character
corresponding to the species nameexpl_var_names
a
vector
containing names of explanatory variablesexpl_var_type
a
vector
containing classes of explanatory variablesexpl_var_range
a
list
containing ranges of explanatory variablesmodel_evaluation
a
data.frame
containing the model evaluationsmodel_variables_importance
a
data.frame
containing the model variables importance
Author(s)
Damien Georges
See Also
biomod2_model
, BIOMOD_EnsembleModeling
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_model
Examples
showClass("biomod2_ensemble_model")
showClass("EMmean_biomod2_model")
showClass("EMmedian_biomod2_model")
showClass("EMcv_biomod2_model")
showClass("EMci_biomod2_model")
showClass("EMca_biomod2_model")
showClass("EMwmean_biomod2_model")
Single model output object class (when running BIOMOD_Modeling()
)
Description
Class created by BIOMOD_Modeling
and bm_RunModel
Usage
## S4 method for signature 'biomod2_model'
show(object)
Arguments
object |
a |
Details
biomod2_model
is the basic object for biomod2 single species distribution models.
All listed classes below are derived from biomod2_model
, and have a
model_class
slot specific value :
-
ANN_biomod2_model
:model_class
isANN
-
CTA_biomod2_model
:model_class
isCTA
-
FDA_biomod2_model
:model_class
isFDA
-
GBM_biomod2_model
:model_class
isGBM
-
GLM_biomod2_model
:model_class
isGLM
-
MARS_biomod2_model
:model_class
isMARS
-
MAXENT_biomod2_model
:model_class
isMAXENT
-
MAXNET_biomod2_model
:model_class
isMAXNET
-
RF_biomod2_model
:model_class
isRF
-
RFd_biomod2_model
:model_class
isRFd
-
SRE_biomod2_model
:model_class
isSRE
Slots
model_name
a
character
corresponding to the model namemodel_class
a
character
corresponding to the model classmodel_options
a
list
containing the model optionsmodel
the corresponding model object
scaling_model
the corresponding scaled model object
dir_name
a
character
corresponding to the modeling folderresp_name
a
character
corresponding to the species nameexpl_var_names
a
vector
containing names of explanatory variablesexpl_var_type
a
vector
containing classes of explanatory variablesexpl_var_range
a
list
containing ranges of explanatory variablesmodel_evaluation
a
data.frame
containing the model evaluationsmodel_variables_importance
a
data.frame
containing the model variables importance
Author(s)
Damien Georges
See Also
Other Toolbox objects:
BIOMOD.ensemble.models.out
,
BIOMOD.formated.data
,
BIOMOD.formated.data.PA
,
BIOMOD.models.options
,
BIOMOD.models.out
,
BIOMOD.options.dataset
,
BIOMOD.options.default
,
BIOMOD.projection.out
,
BIOMOD.stored.data
,
biomod2_ensemble_model
Examples
showClass("biomod2_model")
showClass("ANN_biomod2_model")
showClass("CTA_biomod2_model")
showClass("FDA_biomod2_model")
showClass("GAM_biomod2_model")
showClass("GBM_biomod2_model")
showClass("GLM_biomod2_model")
showClass("MARS_biomod2_model")
showClass("MAXENT_biomod2_model")
showClass("MAXNET_biomod2_model")
showClass("RF_biomod2_model")
showClass("RFd_biomod2_model")
showClass("SRE_biomod2_model")
Convert probability values into binary values using a predefined threshold
Description
This internal biomod2 function allows to convert probability (not necessary
between 0
and 1
) values into binary presence-absence (0
or 1
) values
according to a predefined threshold (see Details).
Usage
bm_BinaryTransformation(data, threshold, do.filtering = FALSE)
## S4 method for signature 'data.frame'
bm_BinaryTransformation(data, threshold, do.filtering = FALSE)
## S4 method for signature 'matrix'
bm_BinaryTransformation(data, threshold, do.filtering = FALSE)
## S4 method for signature 'numeric'
bm_BinaryTransformation(data, threshold, do.filtering = FALSE)
## S4 method for signature 'SpatRaster'
bm_BinaryTransformation(data, threshold, do.filtering = FALSE)
Arguments
data |
a |
threshold |
a |
do.filtering |
(optional, default |
Details
If data
is a vector
, threshold
should be a single
numeric
value.
If data
is a matrix
, data.frame
or
SpatRaster
, threshold
should be a
vector
containing as many values as the number of columns or
layers contained in data
. If only one numeric
value is given,
the same threshold will be applied to all columns or layers.
If do.filtering = FALSE
, binary (0
or 1
) values are returned.
If do.filtering = TRUE
, values will be filtered according to threshold
,
meaning that :
-
data < threshold
will return 0 -
data >= threshold
will return the actual values ofdata
(not transformed in1
)
Value
An object of the same class than data
and containing either
binary (0
or 1
) values, or filtered values.
Author(s)
Wilfried Thuiller, Damien Georges
See Also
BIOMOD_Projection
, BIOMOD_EnsembleForecasting
Other Secondary functions:
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
## Generate a 0-1000 vector (normal distribution)
vec.d <- rnorm(100, 500, 100)
## From continuous to binary / filtered vector
vec.d_bin <- bm_BinaryTransformation(data = vec.d, threshold = 500)
vec.d_filt <- bm_BinaryTransformation(data = vec.d, threshold = 500, do.filtering = TRUE)
cbind(vec.d, vec.d_bin, vec.d_filt)
Build cross-validation table
Description
This internal biomod2 function allows to build a cross-validation table
according to 6 different methods : random
, kfold
, block
, strat
,
env
or user.defined
(see Details).
Usage
bm_CrossValidation(
bm.format,
strategy = "random",
nb.rep = 0,
perc = 0.8,
k = 0,
balance = "presences",
env.var = NULL,
strat = "both",
user.table = NULL,
do.full.models = FALSE
)
bm_CrossValidation_user.defined(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_user.defined(bm.format, user.table)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_user.defined(bm.format, user.table)
bm_CrossValidation_random(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_random(bm.format, nb.rep, perc)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_random(bm.format, nb.rep, perc)
bm_CrossValidation_kfold(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_kfold(bm.format, nb.rep, k)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_kfold(bm.format, nb.rep, k)
bm_CrossValidation_block(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_block(bm.format)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_block(bm.format)
bm_CrossValidation_strat(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_strat(bm.format, balance, strat, k)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_strat(bm.format, balance, strat, k)
bm_CrossValidation_env(bm.format, ...)
## S4 method for signature 'BIOMOD.formated.data'
bm_CrossValidation_env(bm.format, balance, k, env.var)
## S4 method for signature 'BIOMOD.formated.data.PA'
bm_CrossValidation_env(bm.format, balance, k, env.var)
Arguments
bm.format |
a |
strategy |
a |
nb.rep |
(optional, default |
perc |
(optional, default |
k |
(optional, default |
balance |
(optional, default |
env.var |
(optional) |
strat |
(optional, default |
user.table |
(optional, default |
do.full.models |
(optional, default |
... |
(optional, one or several of the following arguments depending on the selected method) |
Details
Several parameters are available within the function and some of them can be used with different cross-validation strategies :
| ....... | random | kfold | block | strat | env |
__________________________________________________
| nb.rep. | x..... | x.... | ..... | ..... | ... |
| perc... | x..... | ..... | ..... | ..... | ... |
| k...... | ...... | x.... | ..... | x.... | x.. |
| balance | ...... | ..... | ..... | x.... | x.. |
| strat.. | ...... | ..... | ..... | x.... | ... |
Concerning column names of matrix
output :
The number of columns depends on the strategy selected.
The column names are given a posteriori of the selection, ranging from 1 to the
number of columns.
If do.full.models = TRUE
, columns merging runs (and/or pseudo-absence datasets)
are added at the end.
Concerning cross-validation strategies :
- random
Most simple method to calibrate and validate a model is to split the original dataset in two datasets : one to calibrate the model and the other one to validate it. The splitting can be repeated
nb.rep
times.- k-fold
The k-fold method splits the original dataset in
k
datasets of equal sizes : each part is used successively as the validation dataset while the otherk-1
parts are used for the calibration, leading tok
calibration/validation ensembles. This multiple splitting can be repeatednb.rep
times.- block
It may be used to test for model overfitting and to assess transferability in geographic space.
block
stratification was described in Muscarella et al. 2014 (see References). Four bins of equal size are partitioned (bottom-left, bottom-right, top-left and top-right).- stratified
It may be used to test for model overfitting and to assess transferability in geographic space.
x
andy
stratification was described in Wenger and Olden 2012 (see References).y
stratification usesk
partitions along the y-gradient,x
stratification does the same for the x-gradient.both
returns2k
partitions:k
partitions stratified along the x-gradient andk
partitions stratified along the y-gradient.- environmental
It may be used to test for model overfitting and to assess transferability in environmental space. It returns
k
partitions for each variable given inenv.var
.- user-defined
Allow the user to give its own crossvalidation table. For a presence-absence dataset, column names must be formatted as:
_allData_RUNx
withx
an integer. For a presence-only dataset for which several pseudo-absence dataset were generated, column names must be formatted as:_PAx_RUNy
withx
an integer andPAx
an existing pseudo-absence dataset andy
an integer
Concerning balance parameter :
If balance = 'presences'
, presences are divided (balanced) equally over the partitions
(e.g. Fig. 1b in Muscarelly et al. 2014).
Absences or pseudo-absences will however be unbalanced over the partitions especially if the
presences are clumped on an edge of the study area.
If balance = 'absences'
, absences (resp. pseudo-absences or background) are divided
(balanced) as equally as possible between the partitions (geographical balanced bins given
that absences are spread over the study area equally, approach similar to Fig. 1 in
Wenger et Olden 2012). Presences will however be unbalanced over the partitions especially
if the presences are clumped on an edge of the study area.
Value
A matrix
or data.frame
defining for each repetition (in columns) which
observation lines should be used for models calibration (TRUE
) and validation
(FALSE
).
Author(s)
Frank Breiner, Maya Gueguen
References
Muscarella, R., Galante, P.J., Soley-Guardia, M., Boria, R.A., Kass, J.M., Uriarte, M. & Anderson, R.P. (2014). ENMeval: An R package for conducting spatially independent evaluations and estimating optimal model complexity for Maxent ecological niche models. Methods in Ecology and Evolution, 5, 1198-1205.
Wenger, S.J. & Olden, J.D. (2012). Assessing transferability of ecological models: an underappreciated aspect of statistical validation. Methods in Ecology and Evolution, 3, 260-267.
See Also
get.block
, kfold
,
BIOMOD_FormatingData
, BIOMOD_Modeling
Other Secondary functions:
bm_BinaryTransformation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# --------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# --------------------------------------------------------------- #
# Create the different validation datasets
# random selection
cv.r <- bm_CrossValidation(bm.format = myBiomodData,
strategy = "random",
nb.rep = 3,
k = 0.8)
# k-fold selection
cv.k <- bm_CrossValidation(bm.format = myBiomodData,
strategy = "kfold",
nb.rep = 2,
k = 3)
# block selection
cv.b <- bm_CrossValidation(bm.format = myBiomodData,
strategy = "block")
# stratified selection (geographic)
cv.s <- bm_CrossValidation(bm.format = myBiomodData,
strategy = "strat",
k = 2,
balance = "presences",
strat = "x")
# stratified selection (environmental)
cv.e <- bm_CrossValidation(bm.format = myBiomodData,
strategy = "env",
k = 2,
balance = "presences")
head(cv.r)
apply(cv.r, 2, table)
head(cv.k)
apply(cv.k, 2, table)
head(cv.b)
apply(cv.b, 2, table)
head(cv.s)
apply(cv.s, 2, table)
head(cv.e)
apply(cv.e, 2, table)
Calculate the best score according to a given evaluation method
Description
This internal biomod2 function allows the user to find the threshold to convert continuous values into binary ones leading to the best score for a given evaluation metric.
Usage
bm_FindOptimStat(
metric.eval = "TSS",
obs,
fit,
nb.thresh = 100,
threshold = NULL,
boyce.bg.env = NULL,
mpa.perc = 0.9
)
get_optim_value(metric.eval)
bm_CalculateStat(misc, metric.eval = "TSS")
Arguments
metric.eval |
a |
obs |
a |
fit |
a |
nb.thresh |
an |
threshold |
(optional, default |
boyce.bg.env |
(optional, default |
mpa.perc |
a |
misc |
a |
Details
- simple
-
-
POD
: Probability of detection (hit rate) -
FAR
: False alarm ratio -
POFD
: Probability of false detection (fall-out) -
SR
: Success ratio -
ACCURACY
: Accuracy (fraction correct) -
BIAS
: Bias score (frequency bias)
-
- complex
-
-
ROC
: Relative operating characteristic -
TSS
: True skill statistic (Hanssen and Kuipers discriminant, Peirce's skill score) -
KAPPA
: Cohen's Kappa (Heidke skill score) -
OR
: Odds Ratio -
ORSS
: Odds ratio skill score (Yule's Q) -
CSI
: Critical success index (threat score) -
ETS
: Equitable threat score (Gilbert skill score)
-
- presence-only
-
-
BOYCE
: Boyce index -
MPA
: Minimal predicted area (cutoff optimizing MPA to predict 90% of presences)
-
Optimal value of each method can be obtained with the get_optim_value
function.
Please refer to the CAWRC website
(section "Methods for dichotomous forecasts") to get detailed description of each metric.
Note that if a value is given to threshold
, no optimization will be done., and
only the score for this threshold will be returned.
The Boyce index returns NA
values for SRE
models because it can not be
calculated with binary predictions.
This is also the reason why some NA
values
might appear for GLM
models if they do not converge.
Value
A 1
row x 5
columns data.frame
containing :
-
metric.eval
: the chosen evaluation metric -
cutoff
: the associated cut-off used to transform the continuous values into binary -
sensitivity
: the sensibility obtained on fitted values with this threshold -
specificity
: the specificity obtained on fitted values with this threshold -
best.stat
: the best score obtained for the chosen evaluation metric
Note
In order to break dependency loop between packages biomod2 and ecospat,
code of ecospat.boyce()
and ecospat.mpa()
in ecospat)
functions have been copied within this file from version 3.2.2 (august 2022).
Author(s)
Damien Georges
References
Engler, R., Guisan, A., and Rechsteiner L. 2004. An improved approach for predicting the distribution of rare and endangered species from occurrence and pseudo-absence data. Journal of Applied Ecology, 41(2), 263-274.
Hirzel, A. H., Le Lay, G., Helfer, V., Randin, C., and Guisan, A. 2006. Evaluating the ability of habitat suitability models to predict species presences. Ecological Modelling, 199(2), 142-152.
See Also
ecospat.boyce()
and ecospat.mpa()
in ecospat,
BIOMOD_Modeling
, bm_RunModelsLoop
,
BIOMOD_EnsembleModeling
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
## Generate a binary vector
vec.a <- sample(c(0, 1), 100, replace = TRUE)
## Generate a 0-1000 vector (random drawing)
vec.b <- runif(100, min = 0, max = 1000)
## Generate a 0-1000 vector (biased drawing)
BiasedDrawing <- function(x, m1 = 300, sd1 = 200, m2 = 700, sd2 = 200) {
return(ifelse(x < 0.5, rnorm(1, m1, sd1), rnorm(1, m2, sd2)))
}
vec.c <- sapply(vec.a, BiasedDrawing)
vec.c[which(vec.c < 0)] <- 0
vec.c[which(vec.c > 1000)] <- 1000
## Find optimal threshold for a specific evaluation metric
bm_FindOptimStat(metric.eval = 'TSS', fit = vec.b, obs = vec.a)
bm_FindOptimStat(metric.eval = 'TSS', fit = vec.c, obs = vec.a, nb.thresh = 100)
bm_FindOptimStat(metric.eval = 'TSS', fit = vec.c, obs = vec.a, threshold = 280)
Standardized formula maker
Description
This internal biomod2 function allows the user to create easily a standardized formula that can be used later by statistical models.
Usage
bm_MakeFormula(
resp.name,
expl.var,
type = "simple",
interaction.level = 0,
k = NULL
)
Arguments
resp.name |
a |
expl.var |
a |
type |
a |
interaction.level |
an |
k |
(optional, default |
Details
It is advised to give only a subset of expl.var
table to avoid useless memory consuming.
If some explanatory variables are factorial, expl.var
must be a data.frame
whose corresponding columns are defined as factor
.
Value
A formula
class object that can be directly given to most of
R statistical models.
Author(s)
Damien Georges
See Also
formula
, s
, s
,
bm_ModelingOptions
, bm_Tuning
,
bm_RunModelsLoop
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
## Create simple simulated data
myResp.s <- sample(c(0, 1), 20, replace = TRUE)
myExpl.s <- data.frame(var1 = sample(c(0, 1), 100, replace = TRUE),
var2 = rnorm(100),
var3 = 1:100)
## Generate automatic formula
bm_MakeFormula(resp.name = 'myResp.s',
expl.var = head(myExpl.s),
type = 'quadratic',
interaction.level = 0)
Configure the modeling options for each selected model
Description
Parameterize and/or tune biomod2's single models options.
Usage
bm_ModelingOptions(
data.type,
models = c("ANN", "CTA", "FDA", "GAM", "GBM", "GLM", "MARS", "MAXENT", "MAXNET", "RF",
"RFd", "SRE", "XGBOOST"),
strategy,
user.val = NULL,
user.base = "bigboss",
bm.format = NULL,
calib.lines = NULL
)
Arguments
data.type |
a |
models |
a |
strategy |
a |
user.val |
(optional, default |
user.base |
(optional, default |
bm.format |
(optional, default |
calib.lines |
(optional, default |
Details
This function creates a BIOMOD.models.options
object containing parameter values
for each single model that can be run within biomod2 through
BIOMOD_Modeling
function.
12 models are currently available, and are listed within the ModelsTable
dataset.
Different strategies are available to set those parameters, through the strategy
argument :
- default
all parameters names and values are directly retrieve from functions to be called through
formalArgs
andformals
functions respectively- bigboss
default parameter values are updated with values predefined by biomod2 team
- user.defined
default parameter values are updated with values provided by the user
- tuned
default parameter values are updated by calling
bm_Tuning
function
To define the same options for all datasets of a model, you can provide these options as a list in user.val with the names "for_all_datasets".
Value
A BIOMOD.models.options
of object that can be used to build species
distribution model(s) with the BIOMOD_Modeling
function.
Note
MAXENT
being the only external model (not called through a R
package),
default parameters, and their values, are the following :
-
path_to_maxent.jar = getwd()
: acharacter
corresponding to path tomaxent.jar
file -
memory_allocated = 512
: aninteger
corresponding to the amount of memory (in Mo) reserved forjava
to runMAXENT
, must be either64
,128
,256
,512
,1024
... orNULL
to use defaultjava
memory limitation parameter -
initial_heap_size = NULL
: acharacter
corresponding to initial heap space (shared memory space) allocated tojava
(argument-Xms
when callingjava
), must be either1024K
,4096M
,10G
... orNULL
to use defaultjava
parameter. Used inBIOMOD_Projection
but not inBIOMOD_Modeling
. -
max_heap_size = NULL
: acharacter
corresponding to maximum heap space (shared memory space) allocated tojava
(argument-Xmx
when callingjava
), must be either1024K
,4096M
,10G
... orNULL
to use defaultjava
parameter, and must be larger thaninitial_heap_size
. Used inBIOMOD_Projection
but not inBIOMOD_Modeling
. -
background_data_dir = 'default'
: acharacter
corresponding to path to folder where explanatory variables are stored asASCII
files (raster format). If specified,MAXENT
will generate its own background data from rasters of explanatory variables ('default'
value). Otherwise biomod2 pseudo-absences will be used (seeBIOMOD_FormatingData
). -
visible = FALSE
: alogical
value defining whetherMAXENT
user interface is to be used or not -
linear = TRUE
: alogical
value defining whether linear features are to be used or not -
quadratic = TRUE
: alogical
value defining whether quadratic features are to be used or not -
product = TRUE
: alogical
value defining whether product features are to be used or not -
threshold = TRUE
: alogical
value defining whether threshold features are to be used or not -
hinge = TRUE
: alogical
value defining whether hinge features are to be used or not -
l2lqthreshold = 10
: aninteger
corresponding to the number of samples at which quadratic features start being used -
lq2lqptthreshold = 80
: aninteger
corresponding to the number of samples at which product and threshold features start being used -
hingethreshold = 15
: aninteger
corresponding to the number of samples at which hinge features start being used -
beta_lqp = -1.0
: anumeric
corresponding to the regularization parameter to be applied to all linear, quadratic and product features (negative value enables automatic setting) -
beta_threshold = -1.0
: anumeric
corresponding to the regularization parameter to be applied to all threshold features (negative value enables automatic setting) -
beta_hinge = -1.0
: anumeric
corresponding to the regularization parameter to be applied to all hinge features (negative value enables automatic setting) -
beta_categorical = -1.0
: anumeric
corresponding to the regularization parameter to be applied to all categorical features (negative value enables automatic setting) -
betamultiplier = 1
: anumeric
corresponding to the number by which multiply all automatic regularization parameters (higher number gives a more spread-out distribution) -
defaultprevalence = 0.5
: anumeric
corresponding to the default prevalence of the modelled species (probability of presence at ordinary occurrence points)
Author(s)
Damien Georges, Wilfried Thuiller, Maya Gueguen
See Also
ModelsTable
, BIOMOD.models.options
,
bm_Tuning
, BIOMOD_Modeling
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------#
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# k-fold selection
cv.k <- bm_CrossValidation(bm.format = myBiomodData,
strategy = 'kfold',
nb.rep = 2,
k = 3)
# ---------------------------------------------------------------#
allModels <- c('ANN', 'CTA', 'FDA', 'GAM', 'GBM', 'GLM'
, 'MARS', 'MAXENT', 'MAXNET', 'RF', 'SRE', 'XGBOOST')
# default parameters
opt.d <- bm_ModelingOptions(data.type = 'binary',
models = allModels,
strategy = 'default')
# providing formated data
opt.df <- bm_ModelingOptions(data.type = 'binary',
models = allModels,
strategy = 'default',
bm.format = myBiomodData,
calib.lines = cv.k)
opt.d
opt.d@models
opt.d@options$ANN.binary.nnet.nnet
names(opt.d@options$ANN.binary.nnet.nnet@args.values)
opt.df@options$ANN.binary.nnet.nnet
names(opt.df@options$ANN.binary.nnet.nnet@args.values)
# ---------------------------------------------------------------#
# bigboss parameters
opt.b <- bm_ModelingOptions(data.type = 'binary',
models = allModels,
strategy = 'bigboss')
# user defined parameters
user.SRE <- list('_allData_allRun' = list(quant = 0.01))
user.XGBOOST <- list('_allData_allRun' = list(nrounds = 10))
user.val <- list(SRE.binary.biomod2.bm_SRE = user.SRE
, XGBOOST.binary.xgboost.xgboost = user.XGBOOST)
opt.u <- bm_ModelingOptions(data.type = 'binary',
models = c('SRE', 'XGBOOST'),
strategy = 'user.defined',
user.val = user.val)
opt.b
opt.u
## Not run:
# tuned parameters with formated data
opt.t <- bm_ModelingOptions(data.type = 'binary',
models = c('SRE', 'XGBOOST'),
strategy = 'tuned',
bm.format = myBiomodData)
opt.t
## End(Not run)
Plot boxplot of evaluation scores
Description
This function represents boxplot of evaluation scores of species distribution
models, from BIOMOD.models.out
or BIOMOD.ensemble.models.out
objects that can be obtained from BIOMOD_Modeling
or
BIOMOD_EnsembleModeling
functions. Scores are represented according to 2
grouping methods (see Details).
Usage
bm_PlotEvalBoxplot(
bm.out,
dataset = "calibration",
group.by = c("algo", "run"),
do.plot = TRUE,
...
)
Arguments
bm.out |
a |
dataset |
a |
group.by |
a 2-length |
do.plot |
(optional, default |
... |
some additional arguments (see Details) |
Details
...
can take the following values :
-
main
: acharacter
corresponding to the graphic title -
scales
: acharacter
corresponding to thescales
argument of thefacet_wrap
function, must be eitherfixed
,free_x
,free_y
orfree
Value
A list
containing a data.frame
with evaluation scores and the corresponding
ggplot
object representing them in boxplot.
Author(s)
Damien Georges, Maya Gueguen
See Also
BIOMOD.models.out
, BIOMOD.ensemble.models.out
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
get_evaluations
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Other Plot functions:
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------
# Get evaluation scores
get_evaluations(myBiomodModelOut)
# Represent evaluation scores
bm_PlotEvalBoxplot(bm.out = myBiomodModelOut, group.by = c('algo', 'run'))
Plot mean evaluation scores
Description
This function represents mean evaluation scores (and their standard deviation)
of species distribution models, from BIOMOD.models.out
or
BIOMOD.ensemble.models.out
objects that can be obtained from
BIOMOD_Modeling
or BIOMOD_EnsembleModeling
functions. Scores are
represented according to 2 different evaluation methods, and models can be grouped
(see Details).
Usage
bm_PlotEvalMean(
bm.out,
metric.eval = NULL,
dataset = "calibration",
group.by = "algo",
do.plot = TRUE,
...
)
Arguments
bm.out |
a |
metric.eval |
a |
dataset |
a |
group.by |
a |
do.plot |
(optional, default |
... |
some additional arguments (see Details) |
Details
...
can take the following values :
-
xlim
: aninteger
corresponding to the x maximum limit to represent -
ylim
: aninteger
corresponding to the y maximum limit to represent -
main
: acharacter
corresponding to the graphic title -
col
: avector
containing new color values
Value
A list
containing a data.frame
with mean and standard deviation of evaluation
scores and the corresponding ggplot
object representing them according to 2 different
evaluation methods.
Author(s)
Damien Georges, Maya Gueguen
See Also
BIOMOD.models.out
, BIOMOD.ensemble.models.out
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
get_evaluations
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Other Plot functions:
bm_PlotEvalBoxplot()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------
# Get evaluation scores
get_evaluations(myBiomodModelOut)
# Represent mean evaluation scores
bm_PlotEvalMean(bm.out = myBiomodModelOut)
Plot species range change
Description
This function represents species range change from object that can be obtained
from BIOMOD_RangeSize
function. Several graphics can be obtained, representing
global counts or proportions of gains / losses, as well as spatial representations (see Details).
Usage
bm_PlotRangeSize(
bm.range,
do.count = TRUE,
do.perc = TRUE,
do.maps = TRUE,
do.mean = TRUE,
do.plot = TRUE,
row.names = c("Species", "Dataset", "Run", "Algo")
)
Arguments
bm.range |
an object returned by the |
do.count |
(optional, default |
do.perc |
(optional, default |
do.maps |
(optional, default |
do.mean |
(optional, default |
do.plot |
(optional, default |
row.names |
(optional, default |
Details
4 plots can be obtained with this function :
- Count barplot
representing absolute number of locations (pixels) lost, stable and gained
- Percentage barplot
representing percentage of locations (pixels) lost, stable, and the corresponding Species Range Change (
PercGain - PercLoss
)- SRC models maps
representing spatially locations (pixels) lost, stable and gained for each single distribution model
- SRC community averaging maps
representing spatially locations (pixels) lost, stable and gained, taking the majoritary value across single distribution models (and representing the percentage of models' agreement)
Please see BIOMOD_RangeSize
function for more details about the values.
Value
A list
containing one or several data.frame
and the corresponding
ggplot
object representing species range change.
Author(s)
Maya Gueguen
See Also
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Other Plot functions:
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------#
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
models.proj <- get_built_models(myBiomodModelOut, algo = "RF")
# Project single models
myBiomodProj <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'CurrentRangeSize',
new.env = myExpl,
models.chosen = models.proj,
metric.binary = 'all')
# ---------------------------------------------------------------#
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_future)
myExplFuture <- terra::rast(bioclim_future)
# Project onto future conditions
myBiomodProjectionFuture <- BIOMOD_Projection(bm.mod = myBiomodModelOut,
proj.name = 'FutureRangeSize',
new.env = myExplFuture,
models.chosen = models.proj,
metric.binary = 'TSS')
# Load current and future binary projections
CurrentProj <- get_predictions(myBiomodProj,
metric.binary = "TSS",
model.as.col = TRUE)
FutureProj <- get_predictions(myBiomodProjectionFuture,
metric.binary = "TSS",
model.as.col = TRUE)
# Compute differences
myBiomodRangeSize <- BIOMOD_RangeSize(proj.current = CurrentProj, proj.future = FutureProj)
# ---------------------------------------------------------------#
myBiomodRangeSize$Compt.By.Models
plot(myBiomodRangeSize$Diff.By.Pixel)
# Represent main results
bm_PlotRangeSize(bm.range = myBiomodRangeSize)
Plot response curves
Description
This function represents response curves of species distribution models, from
BIOMOD.models.out
or BIOMOD.ensemble.models.out
objects that can
be obtained from BIOMOD_Modeling
or BIOMOD_EnsembleModeling
functions. Response curves can be represented in either 2 or 3 dimensions (meaning 1 or 2
explanatory variables at a time, see Details).
Usage
bm_PlotResponseCurves(
bm.out,
models.chosen = "all",
new.env = get_formal_data(bm.out, "expl.var"),
show.variables = get_formal_data(bm.out, "expl.var.names"),
fixed.var = "mean",
do.bivariate = FALSE,
do.plot = TRUE,
do.progress = TRUE,
...
)
Arguments
bm.out |
a |
models.chosen |
a |
new.env |
a |
show.variables |
a |
fixed.var |
a |
do.bivariate |
(optional, default |
do.plot |
(optional, default |
do.progress |
(optional, default |
... |
some additional arguments (see Details) |
Details
This function is an adaptation of the Evaluation Strip method proposed by Elith et al. (2005). To build the predicted response curves :
-
n-1
variables are set constant to a fixed value determined by thefixed.var
parameter (in the case of categorical variable, the most represented class is taken) the remaining variable is made to vary throughout its range given by the
new.env
parameterpredicted values are computed with these
n-1
fixed variables, and this studied variable varying
If do.bivariate = TRUE
, 2 variables are varying at the same time.
The response curves obtained show the sensibility of the model to the studied variable.
Note that this method does not account for interactions between variables.
...
can take the following values :
-
main
: acharacter
corresponding to the graphic title
Value
A list
containing a data.frame
with variables and predicted values and the
corresponding ggplot
object representing response curves.
Author(s)
Damien Georges, Maya Gueguen
References
Elith, J., Ferrier, S., Huettmann, FALSE. and Leathwick, J. R. 2005. The evaluation strip: A new and robust method for plotting predicted responses from species distribution models. Ecological Modelling, 186, 280-289.
See Also
BIOMOD.models.out
, BIOMOD.ensemble.models.out
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Other Plot functions:
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotVarImpBoxplot()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------#
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------#
# Represent response curves
mods <- get_built_models(myBiomodModelOut, run = 'RUN1')
bm_PlotResponseCurves(bm.out = myBiomodModelOut,
models.chosen = mods,
fixed.var = 'median')
## fixed.var can also be set to 'min', 'max' or 'mean'
# bm_PlotResponseCurves(bm.out = myBiomodModelOut,
# models.chosen = mods,
# fixed.var = 'min')
# Bivariate case (one model)
# variables can be selected with argument 'show.variables'
# models can be selected with argument 'models.chosen'
mods <- get_built_models(myBiomodModelOut, full.name = 'GuloGulo_allData_RUN2_RF')
bm_PlotResponseCurves(bm.out = myBiomodModelOut,
show.variables = c("bio4","bio12","bio11"),
models.chosen = mods,
fixed.var = 'median',
do.bivariate = TRUE)
Plot boxplot of variables importance
Description
This function represents boxplot of variables importance of species distribution
models, from BIOMOD.models.out
or BIOMOD.ensemble.models.out
objects that can be obtained from BIOMOD_Modeling
or
BIOMOD_EnsembleModeling
functions. Scores are represented according to 3
grouping methods (see Details).
Usage
bm_PlotVarImpBoxplot(
bm.out,
group.by = c("run", "expl.var", "algo"),
do.plot = TRUE,
...
)
Arguments
bm.out |
a |
group.by |
a 3-length |
do.plot |
(optional, default |
... |
some additional arguments (see Details) |
Details
...
can take the following values :
-
main
: acharacter
corresponding to the graphic title
Value
A list
containing a data.frame
with variables importance and the corresponding
ggplot
object representing them in boxplot.
Author(s)
Damien Georges, Maya Gueguen
See Also
BIOMOD.models.out
, BIOMOD.ensemble.models.out
,
BIOMOD_Modeling
, BIOMOD_EnsembleModeling
,
get_variables_importance
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Other Plot functions:
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# ---------------------------------------------------------------
file.out <- paste0(myRespName, "/", myRespName, ".AllModels.models.out")
if (file.exists(file.out)) {
myBiomodModelOut <- get(load(file.out))
} else {
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# Model single models
myBiomodModelOut <- BIOMOD_Modeling(bm.format = myBiomodData,
modeling.id = 'AllModels',
models = c('RF', 'GLM'),
CV.strategy = 'random',
CV.nb.rep = 2,
CV.perc = 0.8,
OPT.strategy = 'bigboss',
metric.eval = c('TSS','ROC'),
var.import = 3,
seed.val = 42)
}
# ---------------------------------------------------------------
# Get variables importance
get_variables_importance(myBiomodModelOut)
# Represent variables importance
bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('expl.var', 'algo', 'algo'))
bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('expl.var', 'algo', 'PA'))
bm_PlotVarImpBoxplot(bm.out = myBiomodModelOut, group.by = c('algo', 'expl.var', 'PA'))
Select pseudo-absences
Description
This internal biomod2 function allows to select pseudo-absences according
to 4 different methods : random
, sre
, disk
or user.defined
(see Details).
Usage
bm_PseudoAbsences(
resp.var,
expl.var,
nb.rep = 1,
strategy = "random",
nb.absences = NULL,
sre.quant = 0,
dist.min = 0,
dist.max = NULL,
fact.aggr = NULL,
user.table = NULL,
seed.val = NULL
)
bm_PseudoAbsences_user.defined(resp.var, expl.var, ...)
## S4 method for signature 'ANY,SpatVector'
bm_PseudoAbsences_user.defined(resp.var, expl.var, user.table)
## S4 method for signature 'ANY,SpatRaster'
bm_PseudoAbsences_user.defined(resp.var, expl.var, user.table)
bm_PseudoAbsences_random(resp.var, expl.var, ...)
## S4 method for signature 'ANY,SpatVector'
bm_PseudoAbsences_random(resp.var, expl.var, nb.absences, nb.rep, fact.aggr)
## S4 method for signature 'ANY,SpatRaster'
bm_PseudoAbsences_random(resp.var, expl.var, nb.absences, nb.rep, fact.aggr)
bm_PseudoAbsences_sre(resp.var, expl.var, ...)
## S4 method for signature 'ANY,SpatVector'
bm_PseudoAbsences_sre(resp.var, expl.var, sre.quant, nb.absences, nb.rep)
## S4 method for signature 'ANY,SpatRaster'
bm_PseudoAbsences_sre(resp.var, expl.var, sre.quant, nb.absences, nb.rep)
bm_PseudoAbsences_disk(resp.var, expl.var, ...)
## S4 method for signature 'ANY,SpatVector'
bm_PseudoAbsences_disk(
resp.var,
expl.var,
dist.min,
dist.max,
nb.absences,
nb.rep,
fact.aggr
)
## S4 method for signature 'ANY,SpatRaster'
bm_PseudoAbsences_disk(
resp.var,
expl.var,
dist.min,
dist.max,
nb.absences,
nb.rep,
fact.aggr
)
Arguments
resp.var |
a |
expl.var |
a |
nb.rep |
an |
strategy |
a |
nb.absences |
(optional, default |
sre.quant |
(optional, default |
dist.min |
(optional, default |
dist.max |
(optional, default |
fact.aggr |
(optional, default |
user.table |
(optional, default |
seed.val |
(optional, default |
... |
(optional, one or several of the above arguments depending on the selected method) |
Details
Concerning random selection :
The idea is to select pseudo-absences randomly in spatial locations where the species has not
been sampled. This method is the simplest one and the most appropriate if lacking information
about the presence sampling (non-exhaustive, biased sampling, etc).
Concerning SRE selection (see bm_SRE
) :
The idea is to select pseudo-absences in spatial locations whose environmental conditions are
different from those of the presence points. This method is appropriate when most of the
environmental space of the species has been sampled.
Concerning disk selection :
The idea is to select pseudo-absences, not too close from presence points, but not too far
away either. This method is appropriate when most of the spatial range of the species has
been sampled.
Concerning user defined selection :
The user can provide pseudo-absences locations through a table containing spatial locations
in rows, pseudo-absences repetitions in columns, and TRUE/FALSE
values indicating
whether each point is to be considered as pseudo-absence or not for each dataset.
Value
A list
containing the following elements :
-
xy
: the coordinates of the species observations -
sp
: the values of the species observations (0
,1
orNA
) -
env
: the explanatory variables -
pa.tab
: the corresponding table of selected pseudo-absences (indicated byTRUE
orFALSE
)
Author(s)
Wilfried Thuiller, Damien Georges
See Also
bm_SRE
, BIOMOD.formated.data.PA
,
BIOMOD_FormatingData
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# --------------------------------------------------------------- #
# Create the different pseudo-absence datasets
# Transform true absences into potential pseudo-absences
myResp.PA <- ifelse(myResp == 1, 1, NA)
myResp.PA.vect <- vect(cbind(myRespXY, myResp.PA), geom = c("X_WGS84","Y_WGS84"))
# random method
PA.r <- bm_PseudoAbsences(resp.var = myResp.PA.vect,
expl.var = myExpl,
nb.rep = 4,
nb.absences = 1000,
strategy = 'random')
# disk method
PA.d <- bm_PseudoAbsences(resp.var = myResp.PA.vect,
expl.var = myExpl,
nb.rep = 4,
nb.absences = 500,
strategy = 'disk',
dist.min = 5,
dist.max = 35)
# SRE method
PA.s <- bm_PseudoAbsences(resp.var = myResp.PA.vect,
expl.var = myExpl,
nb.rep = 4,
nb.absences = 1000,
strategy = 'sre',
sre.quant = 0.025)
# user.defined method
myPAtable <- data.frame(PA1 = ifelse(myResp == 1, TRUE, FALSE),
PA2 = ifelse(myResp == 1, TRUE, FALSE))
for (i in 1:ncol(myPAtable)) myPAtable[sample(which(myPAtable[, i] == FALSE), 500), i] = TRUE
PA.u <- bm_PseudoAbsences(resp.var = myResp.PA.vect,
expl.var = myExpl,
strategy = 'user.defined',
user.table = myPAtable)
str(PA.r)
head(PA.r$pa.tab)
apply(PA.r$pa.tab, 2, table)
head(PA.d$pa.tab)
apply(PA.d$pa.tab, 2, table)
head(PA.s$pa.tab)
apply(PA.s$pa.tab, 2, table)
tail(PA.u$pa.tab)
apply(PA.u$pa.tab, 2, table)
# random method : different number of PA
PA.r_mult <- bm_PseudoAbsences(resp.var = myResp.PA.vect,
expl.var = myExpl,
nb.rep = 4,
nb.absences = c(1000, 500, 500, 200),
strategy = 'random')
str(PA.r_mult)
head(PA.r_mult$pa.tab)
apply(PA.r_mult$pa.tab, 2, table)
Loop to compute all single species distribution models
Description
This internal biomod2 function allows the user to compute all single
species distribution models (asked by the BIOMOD_Modeling
function).
Usage
bm_RunModelsLoop(
bm.format,
weights,
calib.lines,
modeling.id,
models,
models.pa,
bm.options,
metric.eval,
var.import,
scale.models = TRUE,
nb.cpu = 1,
seed.val = NULL,
do.progress = TRUE
)
bm_RunModel(
model,
run.name,
dir.name = ".",
modeling.id = "",
bm.options,
Data,
weights.vec,
calib.lines.vec,
eval.data = NULL,
metric.eval = c("ROC", "TSS", "KAPPA"),
var.import = 0,
scale.models = TRUE,
nb.cpu = 1,
seed.val = NULL,
do.progress = TRUE
)
Arguments
bm.format |
a |
weights |
a |
calib.lines |
a |
modeling.id |
a |
models |
a |
models.pa |
(optional, default |
bm.options |
a |
metric.eval |
a |
var.import |
(optional, default |
scale.models |
(optional, default |
nb.cpu |
(optional, default |
seed.val |
(optional, default |
do.progress |
(optional, default |
model |
a |
run.name |
a |
dir.name |
(optional, default |
Data |
a |
weights.vec |
a |
calib.lines.vec |
a |
eval.data |
(optional, default |
Value
A list
containing for each model a list
containing the following elements :
-
model
: the name of correctly computed model -
calib.failure
: the name of incorrectly computed model -
pred
: the prediction outputs for calibration data -
pred.eval
: the prediction outputs for evaluation data -
evaluation
: the evaluation outputs returned by thebm_FindOptimStat
function -
var.import
: the mean of variables importance returned by thebm_VariablesImportance
function
Author(s)
Damien Georges
See Also
rpart
, prune
, gbm
,
nnet
, earth
,
fda
, mars
, maxnet
,
randomForest
, xgboost
,
bm_ModelingOptions
, BIOMOD_Modeling
,
bm_MakeFormula
, bm_SampleFactorLevels
,
bm_FindOptimStat
, bm_VariablesImportance
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Surface Range Envelope
Description
This internal biomod2 function allows the user to run a rectilinear surface range envelop (SRE) (equivalent to BIOCLIM) using the extreme percentiles (as recommended by Nix or Busby, see References and Details).
Usage
bm_SRE(
resp.var = NULL,
expl.var = NULL,
new.env = NULL,
quant = 0.025,
do.extrem = FALSE
)
Arguments
resp.var |
a |
expl.var |
a |
new.env |
a |
quant |
a |
do.extrem |
(optional, default |
Details
Please refer to References to get more information about surface range envelop models.
This method is highly influenced by the extremes of the data input. Whereas a linear model
can discriminate the extreme values from the main tendency, the SRE considers them as
important as any other data point leading to changes in predictions.
The more (non-collinear) variables, the more restrictive the model will be.
Predictions are returned as binary (0
or 1
) values, a site being either
potentially suitable for all the variables, or out of bounds for at least one variable and
therefore considered unsuitable.
quant
determines the threshold from which the data will be taken into account for
calibration. The default value of 0.05
induces that the 5%
most extreme values
will be avoided for each variable on each side of its distribution along the gradient, meaning
that a total of 10%
of the data will not be considered.
Value
A vector
or a SpatRaster
object, containing binary
(0
or 1
) values.
Author(s)
Wilfried Thuiller, Bruno Lafourcade, Damien Georges
References
Nix, H.A., 1986. A biogeographic analysis of Australian elapid snakes. In: Atlas of Elapid Snakes of Australia. (Ed.) R. Longmore, pp. 4-15. Australian Flora and Fauna Series Number 7. Australian Government Publishing Service: Canberra.
Busby, Jeremy. BIOCLIM - a bioclimate analysis and prediction system. Plant protection quarterly 6 (1991): 8-9.
See Also
bm_PseudoAbsences
, BIOMOD_FormatingData
,
bm_ModelingOptions
, bm_Tuning
,
bm_RunModelsLoop
, BIOMOD_Modeling
,
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
library(terra)
## Load real data
data(DataSpecies)
myResp.r <- as.numeric(DataSpecies[, 'GuloGulo'])
data(bioclim_current)
myExpl.r <- rast(bioclim_current)
myRespXY <- DataSpecies[which(myResp.r == 1), c('X_WGS84', 'Y_WGS84')]
myResp.v <- classify(subset(myExpl.r, 1),
matrix(c(-Inf, Inf, 0), ncol = 3, byrow = TRUE))
myResp.v[cellFromXY(myResp.v, myRespXY)] <- 1
## Compute SRE for several quantile values
sre.100 <- bm_SRE(resp.var = myResp.v,
expl.var = myExpl.r,
new.env = myExpl.r,
quant = 0)
sre.095 <- bm_SRE(resp.var = myResp.v,
expl.var = myExpl.r,
new.env = myExpl.r,
quant = 0.025)
sre.090 <- bm_SRE(resp.var = myResp.v,
expl.var = myExpl.r,
new.env = myExpl.r,
quant = 0.05)
## Visualize results
res <- c(myResp.v, sre.100, sre.095, sre.090)
names(res) <- c("Original distribution", "Full data calibration"
, "Over 95 percent", "Over 90 percent")
plot(res)
Sample binary vector
Description
This internal biomod2 function allows the user to sample a binary vector
keeping the same proportion of 0
and 1
as the initial vector.
Usage
bm_SampleBinaryVector(obs, ratio, as.logical = FALSE, seedval = NULL)
Arguments
obs |
a |
ratio |
a |
as.logical |
(optional, default |
seedval |
(optional, default |
Value
A list
containing the following elements :
-
calibration
: elements selected for calibration -
validation
: elements selected for validation (complementary to the calibration set)
Author(s)
Damien Georges
See Also
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleFactorLevels()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
## Generate a binary vector
vec.a <- sample(c(0, 1), 100, replace = TRUE)
## Generate calibration / validation datasets
bm_SampleBinaryVector(obs = vec.a, ratio = 0.7)
Sample all levels of a factorial variable
Description
This internal biomod2 function allows the user to sample all levels of all
the factorial variables contained in a data.frame
or SpatRaster
object.
Usage
bm_SampleFactorLevels(expl.var, mask.out = NULL, mask.in = NULL)
Arguments
expl.var |
a |
mask.out |
a |
mask.in |
a |
Details
The expl.var
, mask.out
and mask.in
parameters must be coherent in terms of
dimensions :
same number of rows for
data.frame
objectssame resolution, projection system and number of cells for
SpatRaster
objects
If mask.in
contains several columns (data.frame
) or layers
(SpatRaster
), then their order matters :
they will be considered successively to sample missing factor levels.
Values in
data.frame
will be understood as :-
FALSE
: out of mask -
TRUE
: in mask
-
Values in
SpatRaster
will be understood as :-
NA
: out of mask -
not NA
: in mask
-
Value
A vector
of numeric
values corresponding to either row (data.frame
) or
cell (SpatRaster
) numbers, each referring to a single level of a
single factorial variable.
In case no factorial variable is found in the input object, NULL
is returned.
Author(s)
Damien Georges
See Also
bm_PseudoAbsences
, bm_CrossValidation
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_Tuning()
,
bm_VariablesImportance()
Examples
library(terra)
## Create raster data
ras.1 <- ras.2 <- mask.out <- rast(nrows = 10, ncols = 10)
ras.1[] <- as.factor(rep(c(1, 2, 3, 4, 5), each = 20))
ras.1 <- as.factor(ras.1)
ras.2[] <- rnorm(100)
stk <- c(ras.1, ras.2)
names(stk) <- c("varFact", "varNorm")
## define a mask for already sampled points
mask.out[1:40] <- 1
## define a list of masks where we want to sample in priority
mask.in <- list(ras.1, ras.1)
mask.in[[1]][1:80] <- NA ## only level 5 should be sampled in this mask
mask.in[[1]][21:80] <- NA ## only levels 1 and 5 should be sampled in this mask
## Sample all factor levels
samp1 <- bm_SampleFactorLevels(expl.var = stk, mask.out = mask.out)
samp2 <- bm_SampleFactorLevels(expl.var = stk, mask.in = mask.in)
samp3 <- bm_SampleFactorLevels(expl.var = stk, mask.out = mask.out, mask.in = mask.in)
Tune models parameters
Description
This internal biomod2 function allows to tune single model parameters and select more efficient ones based on an evaluation metric.
Usage
bm_Tuning(
model,
tuning.fun,
do.formula = FALSE,
do.stepAIC = FALSE,
bm.options,
bm.format,
calib.lines = NULL,
metric.eval = "TSS",
metric.AIC = "AIC",
weights = NULL,
ctrl.train = NULL,
params.train = list(ANN.size = c(2, 4, 6, 8), ANN.decay = c(0.01, 0.05, 0.1), ANN.bag =
FALSE, FDA.degree = 1:2, FDA.nprune = 2:25, GAM.select = c(TRUE, FALSE), GAM.method =
c("GCV.Cp", "GACV.Cp", "REML", "P-REML", "ML", "P-ML"), GAM.span = c(0.3, 0.5, 0.7),
GAM.degree = 1, GBM.n.trees = c(500, 1000, 2500), GBM.interaction.depth = seq(2, 8,
by = 3), GBM.shrinkage = c(0.001, 0.01, 0.1), GBM.n.minobsinnode = 10, MARS.degree =
1:2, MARS.nprune = 2:max(21, 2 * ncol(bm.format@data.env.var) + 1), MAXENT.algorithm
= "maxnet",
MAXENT.parallel = TRUE, MAXENT.tune.args = list(rm = seq(0.5, 1,
0.5), fc = c("L")), MAXENT.partitions = "randomkfold", MAXENT.kfolds = 10,
MAXENT.user.grp = NULL, RF.mtry = 1:min(10, ncol(bm.format@data.env.var)), RFd.mtry =
1:min(10, ncol(bm.format@data.env.var)), SRE.quant = c(0, 0.0125, 0.025, 0.05, 0.1),
XGBOOST.nrounds = 50, XGBOOST.max_depth = 1, XGBOOST.eta = c(0.3, 0.4), XGBOOST.gamma
= 0, XGBOOST.colsample_bytree = c(0.6, 0.8), XGBOOST.min_child_weight = 1,
XGBOOST.subsample = 0.5)
)
Arguments
model |
a |
tuning.fun |
a |
do.formula |
(optional, default |
do.stepAIC |
(optional, default |
bm.options |
a |
bm.format |
a |
calib.lines |
(optional, default |
metric.eval |
a |
metric.AIC |
a |
weights |
(optional, default |
ctrl.train |
(optional, default |
params.train |
a |
Details
Concerning ctrl.train
parameter :
Set by default to :
ctrl.train <- caret::trainControl(method = "repeatedcv", repeats = 3, number = 10,
summaryFunction = caret::twoClassSummary,
classProbs = TRUE, returnData = FALSE)
Concerning params.train
parameter :
All elements of the list
must have names matching model.parameter_name
format,
parameter_name
being one of the parameter of the tuning.fun
function called by
caret
package and that can be found through the getModelInfo
function.
Currently, the available parameters to be tuned are the following :
- ANN
size
,decay
,bag
- CTA
maxdepth
- FDA
degree
,nprune
- GAM.gam
span
,degree
- GAM.mgcv
select
,method
- GBM
n.trees
,interaction.depth
,shrinkage
,n.minobsinnode
- MARS
degree
,nprune
- MAXENT
algorithm
,tune.args
,parallel
,partitions
,kfolds
,user.grp
- RF
mtry
- RFd
mtry
- SRE
quant
- XGBOOST
nrounds
,max_depth
,eta
,gamma
,colsampl_bytree
,min_child_weight
,subsample
The expand.grid
function is used to build a matrix
containing all
combinations of parameters to be tested.
Value
A BIOMOD.models.options
object (see bm_ModelingOptions
) with
optimized parameters
Note
No tuning for
GLM
andMAXNET
-
MAXENT
is tuned throughENMevaluate
function which is calling either :maxnet (by defining
MAXENT.algorithm = 'maxnet'
) (default)Java version of Maxent defined in dismo package (by defining
MAXENT.algorithm = 'maxent.jar'
)
-
SRE
is tuned throughbm_SRE
function All other models are tuned through
train
functionNo optimization of formula for
MAXENT
,MAXNET
,SRE
andXGBOOST
No interaction included in formula for
CTA
Variables selection only for
GAM.gam
andGLM
Author(s)
Frank Breiner, Maya Gueguen, Helene Blancheteau
See Also
trainControl
, train
,
ENMevaluate
,
ModelsTable
, BIOMOD.models.options
,
bm_ModelingOptions
, BIOMOD_Modeling
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_VariablesImportance()
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
# --------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
# --------------------------------------------------------------- #
# List of all models currently available in `biomod2` (and their related package and function)
# Some of them can be tuned through the `train` function of the `caret` package
# (and corresponding training function to be used is indicated)
data(ModelsTable)
ModelsTable
allModels <- c('ANN', 'CTA', 'FDA', 'GAM', 'GBM', 'GLM'
, 'MARS', 'MAXENT', 'MAXNET', 'RF', 'SRE', 'XGBOOST')
# default parameters
opt.d <- bm_ModelingOptions(data.type = 'binary',
models = allModels,
strategy = 'default')
# tune parameters for Random Forest model
tuned.rf <- bm_Tuning(model = 'RF',
tuning.fun = 'rf', ## see in ModelsTable
do.formula = FALSE,
bm.options = opt.d@options$RF.binary.randomForest.randomForest,
bm.format = myBiomodData)
tuned.rf
## Not run:
# tune parameters for GAM (from mgcv package) model
tuned.gam <- bm_Tuning(model = 'GAM',
tuning.fun = 'gam', ## see in ModelsTable
do.formula = TRUE,
do.stepAIC = TRUE,
bm.options = opt.d@options$GAM.binary.mgcv.gam,
bm.format = myBiomodData)
tuned.gam
## End(Not run)
Variables' importance calculation
Description
This internal biomod2 function allows the user to compute a variable importance value for each variable involved in the given model.
Usage
bm_VariablesImportance(
bm.model,
expl.var,
variables = NULL,
method = "full_rand",
nb.rep = 1,
seed.val = NULL,
do.progress = TRUE,
temp.workdir = NULL
)
Arguments
bm.model |
a |
expl.var |
a |
variables |
(optional, default |
method |
a |
nb.rep |
an |
seed.val |
(optional, default |
do.progress |
(optional, default |
temp.workdir |
(optional, default |
Details
For each variable to be evaluated :
shuffle the original variable
compute model prediction with shuffled variable
calculate Pearson's correlation between reference and shuffled predictions
return score as
1 - cor
The highest the value, the less reference and shuffled predictions are correlated, and the
more influence the variable has on the model. A value of 0
assumes no influence of
the variable on the model.
Note that this calculation does not account for variables' interactions.
The same principle is used in randomForest
.
Value
A 3
columns data.frame
containing variable's importance scores for each
permutation run :
-
expl.var
: the considered explanatory variable (the one permuted) -
rand
: the ID of the permutation run -
var.imp
: the variable's importance score
Author(s)
Damien Georges
See Also
randomForest
,
bm_RunModelsLoop
, BIOMOD_Modeling
,
BIOMOD_EnsembleModeling
, bm_PlotVarImpBoxplot
,
get_variables_importance
Other Secondary functions:
bm_BinaryTransformation()
,
bm_CrossValidation()
,
bm_FindOptimStat()
,
bm_MakeFormula()
,
bm_ModelingOptions()
,
bm_PlotEvalBoxplot()
,
bm_PlotEvalMean()
,
bm_PlotRangeSize()
,
bm_PlotResponseCurves()
,
bm_PlotVarImpBoxplot()
,
bm_PseudoAbsences()
,
bm_RunModelsLoop()
,
bm_SRE()
,
bm_SampleBinaryVector()
,
bm_SampleFactorLevels()
,
bm_Tuning()
Examples
## Create simple simulated data
myResp.s <- sample(c(0, 1), 20, replace = TRUE)
myExpl.s <- data.frame(var1 = sample(c(0, 1), 100, replace = TRUE),
var2 = rnorm(100),
var3 = 1:100)
## Compute variables importance
mod <- glm(var1 ~ var2 + var3, data = myExpl.s)
bm_VariablesImportance(bm.model = mod,
expl.var = myExpl.s[, c('var2', 'var3')],
method = "full_rand",
nb.rep = 3)
calculate.stat
Description
Deprecated function name for
bm_CalculateStat
Usage
calculate.stat(...)
Arguments
... |
Additional arguments |
See Also
Check duplicated cells
Description
Identify data that are contained in the same raster cells ; print warnings if need be and filter those data if asked for.
Usage
check_duplicated_cells(env, xy, sp, filter.raster, PA.user.table = NULL)
Arguments
env |
a |
xy |
a |
sp |
a |
filter.raster |
a |
Value
a list
getStatOptimValue
Description
Deprecated function name for
get_optim_value
Usage
getStatOptimValue(...)
Arguments
... |
Additional arguments |
See Also
Functions to extract informations from biomod2_model
objects
Description
These functions allow the user to easily retrieve single models (formal or scaled)
from biomod2_model
objects from the modeling step.
Usage
## S4 method for signature 'biomod2_model'
get_formal_model(object)
## S4 method for signature 'biomod2_model'
get_scaling_model(object)
Arguments
object |
a |
Value
get_formal_model
an object from the
model
slot of abiomod2_model
objectget_scaling_model
an object from the
scaling_model
slot of abiomod2_model
object
Author(s)
Damien Georges
See Also
Other Toolbox functions:
getters.out
,
load_stored_object()
,
predict.bm
,
predict.em
,
predict2.bm
,
predict2.em
Functions to extract informations from BIOMOD.models.out
,
BIOMOD.projection.out
or BIOMOD.ensemble.models.out
objects
Description
These functions allow the user to easily retrieve informations stored in the different biomod2 objects from the different modeling steps, such as modeling options and formated data, models used or not, predictions, evaluations, variables importance.
Usage
## S4 method for signature 'BIOMOD.formated.data'
get_species_data(obj)
## S4 method for signature 'BIOMOD.formated.data.PA'
get_species_data(obj)
## S4 method for signature 'BIOMOD.formated.data'
get_eval_data(obj)
## S4 method for signature 'BIOMOD.models.out'
get_options(obj)
## S4 method for signature 'BIOMOD.models.out'
get_calib_lines(obj, as.data.frame = FALSE, PA = NULL, run = NULL)
## S4 method for signature 'BIOMOD.models.out'
get_formal_data(obj, subinfo = NULL)
## S4 method for signature 'BIOMOD.models.out'
get_predictions(
obj,
evaluation = FALSE,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
model.as.col = FALSE
)
## S4 method for signature 'BIOMOD.models.out'
get_built_models(obj, full.name = NULL, PA = NULL, run = NULL, algo = NULL)
## S4 method for signature 'BIOMOD.models.out'
get_evaluations(
obj,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
metric.eval = NULL
)
## S4 method for signature 'BIOMOD.models.out'
get_variables_importance(
obj,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
expl.var = NULL
)
## S4 method for signature 'BIOMOD.projection.out'
get_projected_models(
obj,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL
)
## S4 method for signature 'BIOMOD.projection.out'
free(obj)
## S4 method for signature 'BIOMOD.projection.out'
get_predictions(
obj,
metric.binary = NULL,
metric.filter = NULL,
full.name = NULL,
PA = NULL,
run = NULL,
algo = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL,
model.as.col = FALSE,
...
)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_formal_data(obj, subinfo = NULL)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_built_models(
obj,
full.name = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL,
algo = NULL
)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_kept_models(obj)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_predictions(
obj,
evaluation = FALSE,
full.name = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL,
algo = NULL,
model.as.col = FALSE
)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_evaluations(
obj,
full.name = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL,
algo = NULL,
metric.eval = NULL
)
## S4 method for signature 'BIOMOD.ensemble.models.out'
get_variables_importance(
obj,
full.name = NULL,
merged.by.algo = NULL,
merged.by.run = NULL,
merged.by.PA = NULL,
filtered.by = NULL,
algo = NULL,
expl.var = NULL
)
Arguments
obj |
a |
as.data.frame |
a |
PA |
(optional, default |
run |
(optional, default |
subinfo |
a |
evaluation |
a |
full.name |
(optional, default |
algo |
(optional, default |
model.as.col |
(optional, default |
metric.eval |
(optional, default |
expl.var |
(optional, default |
merged.by.algo |
(optional, default |
merged.by.run |
(optional, default |
merged.by.PA |
(optional, default |
filtered.by |
(optional, default |
metric.binary |
(optional, default |
metric.filter |
(optional, default |
... |
(optional, one or several of the following arguments depending on the selected function) |
Value
get_species_data
a
data.frame
combiningdata.species
,coord
,data.env.var
(andPA.table
) slots ofBIOMOD.formated.data
(orBIOMOD.formated.data.PA
) objectget_eval_data
a
data.frame
combiningeval.data.species
,eval.coord
,eval.data.env.var
slots ofBIOMOD.formated.data
orBIOMOD.formated.data.PA
objectget_options
a
BIOMOD.stored.options-class
object from themodels.options
slot of aBIOMOD.models.out-class
objectget_calib_lines
a
BIOMOD.stored.data.frame-class
object from thecalib.lines
slot of aBIOMOD.models.out
objectget_projected_models
a
vector
from themodels.projected
slot of aBIOMOD.projection.out
objectget_predictions
a
BIOMOD.stored.data
object from theproj.out
slot of aBIOMOD.models.out
,BIOMOD.projection.out
orBIOMOD.ensemble.models.out
objectget_kept_models
a
vector
containing names of the kept models of aBIOMOD.ensemble.models.out
objectget_formal_data
depending on the
subinfo
parameter :NULL
a
BIOMOD.stored.formated.data-class
(orBIOMOD.stored.models.out-class
) object from theformated.input.data
(ormodels.out
) slot of aBIOMOD.models.out
(orBIOMOD.ensemble.models.out
) objectexpl.var.names
a
vector
from theexpl.var.names
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
objectresp.var
a
vector
from thedata.species
slot of theformated.input.data
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
objectexpl.var
a
data.frame
from thedata.env.var
slot of theformated.input.data
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
objectMinMax
a
list
of minimum and maximum values (or levels if factorial) of variable contained in thedata.env.var
slot of theformated.input.data
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
objecteval.resp.var
a
vector
from theeval.data.species
slot of theformated.input.data
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
objecteval.expl.var
a
data.frame
from theeval.data.env.var
slot of theformated.input.data
slot of aBIOMOD.models.out
orBIOMOD.ensemble.models.out
object
get_built_models
a
vector
from themodels.computed
slot (orem.computed
) of aBIOMOD.models.out
(orBIOMOD.ensemble.models.out
) objectget_evaluations
a data.frame from the
models.evaluation
slot (ormodel_evaluation
of each model inem.computed
) of aBIOMOD.models.out
(orBIOMOD.ensemble.models.out
) object. Contains evaluation metric for different models and dataset. Evaluation metric are calculated on the calibrating data (columncalibration
), on the cross-validation data (columnvalidation
) or on the evaluation data (columnevaluation
).
For cross-validation data, seeCV.[...]
parameters inBIOMOD_Modeling
function ; for evaluation data, seeeval.[...]
parameters inBIOMOD_FormatingData
.get_variables_importance
a
BIOMOD.stored.data.frame-class
from thevariables.importance
slot (ormodel_variables_importance
of each model inem.models
) of aBIOMOD.models.out
(orBIOMOD.ensemble.models.out
) object
Author(s)
Damien Georges
See Also
BIOMOD.models.out
, BIOMOD.projection.out
,
BIOMOD.ensemble.models.out
Other Toolbox functions:
getters.bm
,
load_stored_object()
,
predict.bm
,
predict.em
,
predict2.bm
,
predict2.em
Functions to load BIOMOD.stored.data
objects
Description
This functions allow the user to load BIOMOD.stored.data
objects
into memory.
Usage
load_stored_object(obj, ...)
## S4 method for signature 'BIOMOD.stored.data'
load_stored_object(obj, layer = 1)
## S4 method for signature 'BIOMOD.stored.SpatRaster'
load_stored_object(obj, layer = 1)
Arguments
obj |
a |
... |
additional arguments |
layer |
an |
Author(s)
Damien Georges
See Also
Other Toolbox functions:
getters.bm
,
getters.out
,
predict.bm
,
predict.em
,
predict2.bm
,
predict2.em
makeFormula
Description
Deprecated function name for
bm_MakeFormula
Usage
makeFormula(...)
Arguments
... |
Additional arguments |
See Also
models_scores_graph
Description
Deprecated function name for
bm_PlotEvalMean
Usage
models_scores_graph(...)
Arguments
... |
Additional arguments |
See Also
plot
method for BIOMOD.formated.data
object class
Description
Plot the spatial distribution of presences, absences and
pseudo-absences among the different potential dataset (calibration,
validation and evaluation). Available only if coordinates were given to
BIOMOD_FormatingData
.
Usage
## S4 method for signature 'BIOMOD.formated.data,missing'
plot(
x,
calib.lines = NULL,
plot.type,
plot.output,
PA,
run,
plot.eval,
point.size = 1.5,
do.plot = TRUE
)
Arguments
x |
a |
calib.lines |
(optional, default |
plot.type |
a |
plot.output |
a |
PA |
(optional, default |
run |
(optional, default |
plot.eval |
(optional, default |
point.size |
a |
do.plot |
(optional, default |
Value
a list
with the data used to generate the plot and a
ggplot2
object
Author(s)
Remi Patin
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
myBiomodData
plot(myBiomodData)
Functions to get predictions from biomod2_model
objects
Description
This function allows the user to predict single models from
biomod2_model
on (new) explanatory variables.
Usage
## S4 method for signature 'biomod2_model'
predict(object, newdata, ...)
Arguments
object |
a |
newdata |
a |
... |
(optional) |
Author(s)
Damien Georges
See Also
Other Toolbox functions:
getters.bm
,
getters.out
,
load_stored_object()
,
predict.em
,
predict2.bm
,
predict2.em
Functions to get predictions from biomod2_ensemble_model
objects
Description
This function allows the user to predict single models from
biomod2_ensemble_model
on (new) explanatory variables.
Arguments
object |
a |
newdata |
a |
... |
(optional) |
Author(s)
Damien Georges
See Also
Other Toolbox functions:
getters.bm
,
getters.out
,
load_stored_object()
,
predict.bm
,
predict2.bm
,
predict2.em
Functions to get predictions from biomod2_model
objects
Description
Internal S4 method used to predict single models from
biomod2_model
on (new) explanatory variables. predict2
was introduced to allow a signature with two arguments : object
,
a type of biomod2_model
and newdata
, either a
SpatRaster
or a data.frame
.
Usage
predict2(object, newdata, ...)
## S4 method for signature 'biomod2_model,SpatRaster'
predict2(object, newdata, predfun, seedval = NULL, ...)
## S4 method for signature 'biomod2_model,data.frame'
predict2(object, newdata, predfun, seedval = NULL, ...)
## S4 method for signature 'ANN_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'ANN_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'CTA_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'CTA_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'FDA_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'FDA_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'GAM_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'GAM_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'GBM_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'GBM_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'GLM_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'GLM_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'MARS_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'MARS_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'MAXENT_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'MAXENT_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'MAXNET_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'MAXNET_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'RF_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'RF_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'RFd_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'RFd_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'SRE_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'SRE_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'XGBOOST_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'XGBOOST_biomod2_model,data.frame'
predict2(object, newdata, ...)
Arguments
object |
a |
newdata |
a |
predfun |
a |
seedval |
(optional, default |
... |
(optional)) |
Author(s)
Remi Patin
See Also
Other Toolbox functions:
getters.bm
,
getters.out
,
load_stored_object()
,
predict.bm
,
predict.em
,
predict2.em
Functions to get predictions from biomod2_ensemble_model
objects
Description
This function allows the user to predict single models from
biomod2_ensemble_model
on (new) explanatory variables.
Usage
## S4 method for signature 'biomod2_ensemble_model,SpatRaster'
predict2(object, newdata, predfun, seedval = NULL, ...)
## S4 method for signature 'biomod2_ensemble_model,data.frame'
predict2(object, newdata, predfun, seedval = NULL, ...)
## S4 method for signature 'EMmean_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'EMmean_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'EMmedian_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'EMmedian_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'EMcv_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'EMcv_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'EMci_biomod2_model,SpatRaster'
predict2(object, newdata, ...)
## S4 method for signature 'EMci_biomod2_model,data.frame'
predict2(object, newdata, ...)
## S4 method for signature 'EMca_biomod2_model,SpatRaster'
predict2(object, newdata, data_as_formal_predictions = FALSE, ...)
## S4 method for signature 'EMca_biomod2_model,data.frame'
predict2(object, newdata, data_as_formal_predictions = FALSE, ...)
## S4 method for signature 'EMwmean_biomod2_model,SpatRaster'
predict2(object, newdata, data_as_formal_predictions = FALSE, ...)
## S4 method for signature 'EMwmean_biomod2_model,data.frame'
predict2(object, newdata, data_as_formal_predictions = FALSE, ...)
Arguments
object |
a |
newdata |
a |
predfun |
a |
seedval |
(optional, default |
data_as_formal_predictions |
(optional, default |
... |
(optional) |
Author(s)
Remi Patin
See Also
Other Toolbox functions:
getters.bm
,
getters.out
,
load_stored_object()
,
predict.bm
,
predict.em
,
predict2.bm
Check whether SpatRaster is an empty rast()
Description
Check whether SpatRaster is an empty rast()
Usage
rast.has.values(x)
Arguments
x |
SpatRaster to be checked |
Value
a boolean
response.plot2
Description
Deprecated function name for
bm_PlotResponseCurves
Usage
response.plot2(...)
Arguments
... |
Additional arguments |
See Also
sample.factor.levels
Description
Deprecated function name for
bm_SampleFactorLevels
Usage
sample.factor.levels(...)
Arguments
... |
Additional arguments |
See Also
sre
Description
Deprecated function name for
bm_SRE
Usage
sre(...)
Arguments
... |
Additional arguments |
See Also
summary
method for BIOMOD.formated.data
object class
Description
Summarize the number of presences, absences and pseudo-absences among the different potential dataset (calibration, validation and evaluation).
Usage
## S4 method for signature 'BIOMOD.formated.data'
summary(object, calib.lines = NULL)
Arguments
object |
a |
calib.lines |
(optional, default |
Value
a data.frame
Author(s)
Remi Patin
Examples
library(terra)
# Load species occurrences (6 species available)
data(DataSpecies)
head(DataSpecies)
# Select the name of the studied species
myRespName <- 'GuloGulo'
# Get corresponding presence/absence data
myResp <- as.numeric(DataSpecies[, myRespName])
# Get corresponding XY coordinates
myRespXY <- DataSpecies[, c('X_WGS84', 'Y_WGS84')]
# Load environmental variables extracted from BIOCLIM (bio_3, bio_4, bio_7, bio_11 & bio_12)
data(bioclim_current)
myExpl <- terra::rast(bioclim_current)
## ----------------------------------------------------------------------- #
# Format Data with true absences
myBiomodData <- BIOMOD_FormatingData(resp.var = myResp,
expl.var = myExpl,
resp.xy = myRespXY,
resp.name = myRespName)
myBiomodData
summary(myBiomodData)
variables_importance
Description
Deprecated function name for
bm_VariablesImportance
Usage
variables_importance(...)
Arguments
... |
Additional arguments |
See Also
Dummy function to clean working directory after package checks
Description
This is the last function that will be check and will remove residual files from other examples checking such as 'GuloGulo'. This is required to pass CRAN checks.
Usage
zzz_bm()
Value
nothing returned
Examples
zzz_bm()