oneimpact
provides tools for the assessment of cumulative impacts of multiple infrastructure and land use modifications in ecological studies.
This includes tools to calculate the zone of influence (ZOI) of anthropogenic variables as well as tools for model fitting, estimation of the
effect size and ZOI, and ancillary functions. The functions dealing with spatial data processing can
be run in both R and GRASS GIS, using R as an interface. The tools available so far are:
The first set of functions in oneimpact
are aimed at computing the (potential) ZOI of infrastructure or other
spatial covariates. This means we use spatial information on where they are located to compute
the density of features in space (i.e. the cumulative ZOI) and/or the (decay) distance to the nearest
feature (i.e. the ZOI of the nearest), given an expected ZOI radius (i.e. the distance up to which
a given feature is expected to affect a certain species or process). These functions do not estimate
the ZOI, though (which is context and process dependent); for that see more functions further down.
Here are the main functions in oneimpact
to compute spatial layers representing zones of influence.
threshold_decay()
or step_decay()
),
linear decay (linear_decay()
or bartlett_decay()
or tent_decay()
), exponential decay (exp_decay()
), or Gaussian decay
(gaussian_decay()
or half_norm_decay()
).plot_zoi1d()
: plot ZOI in 1 dimensional space for multiple points infrastructure, using both the ZOI of the nearest
feature and the cumulative ZOI metric.calc_zoi_nearest()
: Calculate the zone of influence from the nearest infrastructure, according to multiple possible
decay functions and zones of influence radii.calc_zoi_cumulative()
: Calculate the cumulative zone of influence of multiple features, according to multiple possible
decay functions and zones of influence radii.calc_zoi()
: Calculate both the the ZOI of the nearest infrastructure and the cumulative ZOI, at multiple
scales or zones of influence radii.create_filter()
: Create filters or weight matrices for neighborhood analysis, according to different decay functions
and parameterized using the zone of influence radius.save_filter()
: Saves filters/weight matrices outside R for use within GRASS GIS modules.The oneimpact
package also allows us to, given a set of potential candidate ZOIs (with possibly
different types, shapes, and radii; computed with the functions above), estimate the actual
effect and ZOI of the variables on a certain species or process. This is done combining three elements:
Functions to set up RSF and SSF analyses using ZOI variables:
add_zoi_formula()
: Adds ZOI radii to formulaspat_strat()
: Prepares data for spatially stratified crossâvalidation schemesexplore_blocks_pre()
and explore_blocks()
: Explore hierarchical blocks before or
after sampling or spatial stratification, respectivelycreate_resamples()
: Create samples for fitting, calibrating, and validating models in
a bootstrap/baggin procedure.Functions to fit RSF and SSF and estimate ZOI using penalized regression
bag_fit_net_clogit()
: Fits a a bag of conditional logistic regressions/SSF/iSSF using glmnet.
This function is a wrapper around fit_net_clogit()
which is the one properly setting up the
model fitting, tunning, and validation. It allows the use of different penalization algorithms,
including Lasso, Ridge, Adaptive Lasso, and different adaptations from Adaptive Lasso. This
function calls the function net_logit()
which is the one properly calling glmnet
and fitting
the model.bag_fit_net_logit()
(and fit_net_logit()
, net_logit()
): equivalent to the one above, but
performing common logistic regression, with no strata.
bag_load_models()
: Load a vector of files with the output of fit_net_clogit()
or
fit_net_logit()
and put them on a bag.
bag_models()
: Bag a list of loaded/fitted models fitted through fit_net_clogit()
or
fit_net_logit()
. This created an object of class bag
with all information for understanding
and making prediction from the bag of models.AUC()
, conditionalAUC()
, coxnet.deviance()
, Cindex()
, conditionalSomersD()
: functions
used for model tunning (selecting penalties) and validation.Functions to help interpreting parameters and visualizing cumulative impacts from bags of fitted models:
predict()
: Prediction of a bag of models to new data.variable_importance()
, plot_importance()
: Computes and plots variable importance from a bag of models.plot_coef()
: Plots the coefficients of bags of models.plot_response()
: Plots (partial) response curves from a bag of models.bag_predict_spat()
: Predict bag of models in space.bag_predict_spat_vars()
: Predict reponses of each individual covariate in space according to
a bag of models.To install the development version of the oneimpact
R package, please use:
library(devtools)
devtools::install_github("NINAnor/oneimpact", ref = "HEAD")
docker run --rm -p 8787:8787 -e PASSWORD=rstudio -v $PWD/myproject:/home/rstudio/myproject ghcr.io/ninanor/oneimpact:main
If you use Compose:
docker compose run rstudio
You can customize docker-compose.yml
based on your needs.
For model fitting and estimation of ZOI, see the pacakage glmnet
,
which is the backbone of the modeling approach used in oneimpact
. For other similar approaches,
check the maxnet()
for MaxEnt
species distribution models using glmnet
.
The oneimpact
functions to compute the ZOI layers are greatly based on neighborhood analyses
made through the terra
package in R and on three GRASS GIS modules:
r.mfilter
,
r.resamp.filter
, and
r.neighbors
. The connection
between R and GRASS GIS is made through the rgrass
R package.
oneimpact
in R running citation(package = 'oneimpact')
, or check the reference here.Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.