In a nutshell, package blockCV provides functions to build train and test data sets using three general strategies: buffers, spatial and environmental blocks. It offers several options for how those blocks are constructed and how blocks are allocated to cross-validation folds. It includes a function that applies geostatistical techniques to investigate the existing level of spatial autocorrelation in the chosen predictor variables to inform the choice of the block and buffer size. In addition, visualization tools further aid the selection of block size and provide an understanding of the spread of species data across generated folds.
Compared to other available packages, blockCV provides more strategies and control over fold generation including:
To install the package from GitHub use:
Or installing from CRAN:
To see the vignette of the package use:
The vignette is also available via this link.
The following is an example of using spatial block cross-validation for evaluation of species distribution modelling. You can find a comprehensive tutorial in the vignette of the package.
# loading the package
library(blockCV)
# spatial blocking by specified range and random assignment
sb <- spatialBlock(speciesData = pa_data, # sf or SpatialPoints
species = "Species", # the response column (binomial or multi-class)
rasterLayer = myrasters, # a raster for background (optional)
theRange = 70000, # size of the blocks in meters
k = 5, # number of folds
selection = "random",
iteration = 100, # find evenly dispersed folds
biomod2Format = TRUE)
# investigate spatial autocorrelation in raster covariates
# this helps to choose a suitable size for spatial blocks
spatialAutoRange(rasterLayer = myrasters, # rasterStack file
sampleNumber = 5000, # number of cells to be used
doParallel = TRUE,
showPlots = TRUE)
# alternatively, you can manually choose the size of spatial blocks
rangeExplorer(rasterLayer = myrasters,
speciesData = pa_data, # response data (optional)
species = "Species" # the responcse column (optional)
minRange = 30000, # limit the search domain
maxRange = 100000)
To cite package blockCV in publications, please use:
Valavi R, Elith J, Lahoz-Monfort JJ, Guillera-Arroita G. blockCV: An R package for generating spatially or environmentally separated folds for k-fold cross-validation of species distribution models. Methods Ecol Evol. 2019; 10:225–232. https://doi.org/10.1111/2041-210X.13107