I'm using the R package kuenm to produce and project species distribution models.
I've produced the models without a problem, but when I try to evaluate the extrapolation risk for future projections with the function kuenm_mop I get the error:
Error: cannot allocate vector of size 92GB
The system I'm using has Windows 8.1 Pro and 64GB of RAM (which I believe is the limiting facotr here).
My question is: is it possible to work with a vector of greater size than my RAM?
This is the function I'm using:
library(kuenm)
sets_var <- "Set_1" #set of variables used
out_mop <- "MOP_results" #output directory
percent <- 10
paral <- FALSE
is_swd <- FALSE
M_var_dir <- "M_variables"
G_var_dir <- "G_variables"
kuenm_mmop(G.var.dir = G_var_dir, M.var.dir = M_var_dir, sets.var = sets_var, is.swd = is_swd, out.mop = out_mop, percent = percent, parallel = paral)