View source: R/ecospat.modelingtools.R
ecospat.Epred | R Documentation |
Calculate the mean (or weighted mean) of several predictions.
ecospat.Epred (x, w=rep(1,ncol(x)), th=0)
x |
A dataframe object with SDM predictions. |
w |
Weight of the model, e.g. AUC. The default is 1. |
th |
Threshold used to binarize. |
The Weighted Average consensus method utilizes pre-evaluation of the predictive performance of the single-models. In this approach, half (i.e. four) of the eight single-models with highest accuracy are selected first, and then a WA is calculated based on the pre-evaluated AUC of the single-models
A weighted mean binary transformation of the models.
Blaise Petitpierre bpetitpierre@gmail.com
Boyce, M.S., P.R. Vernier, S.E. Nielsen and F.K.A. Schmiegelow. 2002. Evaluating resource selection functions. Ecol. Model., 157, 281-300.
Marmion, M., M. Parviainen, M. Luoto, R.K. Heikkinen andW. Thuiller. 2009. Evaluation of consensus methods in predictive species distribution modelling. Diversity and Distributions, 15, 59-69.
x <- ecospat.testData[c(92,96)]
mean <- ecospat.Epred (x, w=rep(1,ncol(x)), th=0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.