minosse | R Documentation |
This function performs minosse.data
and minosse.target
all at once for one or multiple target species.
minosse(dat,species.name=NULL,domain=NULL,time.overlap=0.95,
coc_by="locality",min.occs=10,min.bkg=100,sampling.by.distance=TRUE,
n.sims=10,n.clusters=NULL,n.sims.clusters=NULL,prediction.ground=NULL,
abiotic.covs=NULL,combine.covs=FALSE,reduce_covs_by="pca",covs_th=0.95,c.size="mean",crop.by.mcp=FALSE,constrain.predictors=FALSE,
temporal.tolerance=NULL,projection=NULL,lon_0=NULL,lat_0=NULL,seed=NULL)
dat |
A |
species.name |
The character vector of the species names whose geographic ranges are to be estimated. If |
domain |
Character or |
time.overlap |
Numeric. The proportion of temporal intersection between the targer and the predictors' time span. Default is 0.95. |
coc_by |
Character. This argument enables the cooccurrence analysis performed either at the locality level (then use |
min.occs |
Numeric. For both target and predictor species. The number occurrences below which |
min.bkg |
Numeric. |
sampling.by.distance |
Logical. If |
n.sims |
Numeric or |
n.clusters |
Numeric or |
n.sims.clusters |
Numeric or |
prediction.ground |
Either a raster or a SpatialPolygons class object where to perform all the spatial interpolations. This will be the prediction ground used when running |
abiotic.covs |
The raster or rasters' stack of additional environmental predictors. |
combine.covs |
Logical. Should |
crop.by.mcp |
Logical. If |
constrain.predictors |
Logical. Removing from the predictors' record all the localities not complying with spatial and temporal restrictions? Default is |
temporal.tolerance |
Numeric. If |
projection |
Character. This argument works only if |
lon_0 |
Numeric. Only if |
lat_0 |
Numeric. Only if |
seed |
Numeric. The |
A list of three objects where the first one is the polygon of the target species geographic range (a SpatialPolygons object), the second element is the output of minosse.target
function (see minosse.target
function for details) and the last one is the result (if available) of the cooccurrence analysis.
If minosse
function is performed for multiple species all at once, then minosse
output described above is replicated for each target species.
Francesco Carotenuto, francesco.carotenuto@unina.it
## Not run:
library(raster)
data(lgm)
raster(system.file("exdata/prediction_ground.gri", package="EcoPast"))->prediction_ground
mam<-minosse(dat=lgm,species.name="Mammuthus_primigenius",domain=NULL,
time.overlap=0.95,prediction.ground=prediction_ground,crop.by.mcp=FALSE,
coc_by="locality",min.occs=3,min.bkg=100,sampling.by.distance=TRUE,
constrain.predictors=FALSE, temporal.tolerance=NULL,n.sims=10,n.clusters=NULL,
n.sims.clusters=NULL,projection="laea",lon_0 = NULL,lat_0 = NULL,seed=625)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.