biomod2 (version 3.3-7.1)

models_scores_graph: Produce models evaluation bi-dimensional graph

Description

This function is a graphic tool to represent evaluation scores of models produced with biomod2 according to 2 different evaluation methods. Models can be grouped in several ways (by algo, by CV run, ...) to highlight potential differences in models quality due to chosen models, cross validation sampling bias,... Each point represents the average evaluation score across each group. Lines represents standard deviation of evaluation scores of the group.

Usage

models_scores_graph(obj, 
                      metrics = NULL, 
                      by = 'models', 
                      plot = TRUE, 
                      ... )

Arguments

metrics

character vector of 2 chosen metrics (e.g c("ROC", "TSS")); if not filled the two first evaluation methods computed at modeling stage will be selected.

by

character ('models'), the way evaluation scores are grouped. Should be one of 'models', 'algos', 'CV_run' or 'data_set' (see detail section)

plot

logical (TRUE), does plot should be produced

...

additional graphical arguments (see details)

Value

A ggplot2 plotting object is return. It means that user should then easily customize this plot (see example)

Details

by argument description :

by arg refers to the way models scores will be combined to compute mean and sd. It should take the following values:

  • models : group evaluation scores according to top level models. Top level models should be for instance GLM, GAM, RF, SRE... in "BIOMOD.models.out" input case whereas it should be EMcaByTSS (committee averaging using TSS score), EMwmeanByROC (weighted mean using ROC scores),... or whatever in "BIOMOD.EnsembleModeling.out" input case.

  • algos : If you work with "BIOMOD.models.out" then algos is equivalent to models. If you work with "BIOMOD.EnsembleModeling.out" then it refer to formal models i.e. GLM, GAM, RF, SRE... (should also be mergedAlgo in this case).

  • cv_run : the cross validation run e.g. run1, run2,... Should be mergedRun in EnsembleModels input case.

  • data_set : the data set (resp. pseudo absences data set) used to group scores e.g PA1, PA2,... if pseudo absences sampling have been computed or AllData inf not. Should also be mergedData in EnsembleModels case.

Additional arguments (…) :

Additional graphical parameters should be.

  • xlim the graphical range represent for the first evaluation metric

  • ylim the graphical range represent for the second evaluation metric

  • main main plot title

See Also

BIOMOD_Modeling, BIOMOD_EnsembleModeling

Examples

Run this code
# NOT RUN {
## this example is based on BIOMOD_Modeling function example
example(BIOMOD_Modeling)

## plot evaluation models score graph

### by models
gg1 <- models_scores_graph( myBiomodModelOut,
                            by = 'models',
                            metrics = c('ROC','TSS') )
## we see a influence of model selected on models capabilities
## e.g. RF are much better than SRE

### by cross validation run
gg2 <- models_scores_graph( myBiomodModelOut,
                            by = 'cv_run',
                            metrics = c('ROC','TSS') )
## there is no difference in models quality if we focus on 
## cross validation sampling

### some graphical customisations
gg1_custom <- 
  gg1 + 
  ggtitle("Diff between RF and SRE evaluation scores") + ## add title
  scale_colour_manual(values=c("green", "blue")) ## change colors

gg1_custom

# }

Run the code above in your browser using DataLab