read.sdm {sdm} | R Documentation |
Read an sdm object from a file, or write it to a file.
read.sdm(filename,...) write.sdm(x,filename,overwrite,...)
filename |
Filename (character) |
x |
a sdm object (e.g., sdmModels,sdmdata or sdmSetting) |
overwrite |
Logical. If |
... |
additional arguments |
read.sdm
function reads any files that has been writed by write.sdm
. These functions use saveRDS
and readRDS
to write and read the sdm objects. Additional arguments ...
pass to these functions. An sdmModels
object is saved to a file with an extension of ".sdm". The file extensions for sdmdata
and sdmSetting
object are ".sdd", and "sds", respectively.
Babak Naimi
Naimi, B., Araujo, M.B. (2016) sdm: a reproducible and extensible R platform for species distribution modelling, Ecography, 39:368-375, DOI: 10.1111/ecog.01881
## Not run: file <- system.file("external/data.sdd", package="sdm") d <- read.sdm(file) d # can be used to read sdm models (sdmModels) and sdmSettings as well. write.sdm(d,'dataset') # extension is created for data, model and settings as .sdd, .sds, and .sdm respectively. list.files(pattern='dataset') ## End(Not run)