| bm_RunModelsLoop {biomod2} | R Documentation |
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_FindOptimStatfunction -
var.import: the mean of variables importance returned by thebm_VariablesImportancefunction
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 Secundary 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()