View source: R/ecospat.modelingtools.R
ecospat.maxentvarimport | R Documentation |
Calculate the importance of variables for Maxent in the same way Biomod does, by randomly permuting each predictor variable independently, and computing the associated reduction in predictive performance.
ecospat.maxentvarimport (model, dfvar, nperm)
model |
The name of the maxent model. |
dfvar |
A dataframe object with the environmental variables. |
nperm |
The number of permutations in the randomization process. The default is 5. |
The calculation is made as biomod2 "variables_importance" function. It's more or less base on the same principle than randomForest variables importance algorithm. The principle is to shuffle a single variable of the given data. Make model prediction with this 'shuffled' data.set. Then we compute a simple correlation (Pearson's by default) between references predictions and the 'shuffled' one. The return score is 1-cor(pred_ref,pred_shuffled). The highest the value, the more influence the variable has on the model. A value of this 0 assumes no influence of that variable on the model. Note that this technique does not account for interactions between the variables.
a list
which contains a data.frame
containing variables importance scores for each permutation run.
Blaise Petitpierre bpetitpierre@gmail.com
library(dismo)
data('ecospat.testData')
# data for Soldanella alpina
data.Solalp<- ecospat.testData[c("Soldanella_alpina","ddeg","mind","srad","slp","topo")]
# path to maxent.jar file
path<- paste0(system.file(package="dismo"), "/java/maxent.jar")
if (file.exists(path) & require(rJava)) {
me <- maxent(data.Solalp[,-1],data.Solalp[,1])
ecospat.maxentvarimport (model=me, dfvar=data.Solalp[,-1], nperm=5)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.