Learn R Programming

⚠️There's a newer version (0.3.2) of this package.Take me there.

mobsim

The goal of the package is to facilitate understanding of scale-dependent biodiversity changes.

The package includes functions to simulate species distributions in space with controlled abundance distributions as well as controlled intraspecific aggregation. For analysis there are functions for species rarefaction and accumulation curves, species-area relationships, endemics-area relationships and th distance-decay of community similarity.

Installation

Sometimes the function devtools::install_github() does not install dependencies correctly. To be save it is better to install the dependencies of mobsim first.

install.packages("Rcpp","vegan","sads","rmarkdown","spatstat","testthat","knitr")

You can install mobsim from github with:

# install.packages("devtools")
devtools::install_github("MoBiodiv/mobsim", build_vignettes = TRUE)

Getting help

You can get an overview of the available functions in mobsim:

?mobsim

Or have a look at tutorials in the vignette:

browseVignettes("mobsim")

Example

Here is an example of how to simulate two communities, which just differ in their spatial aggregation of species, but have the same species abundance distribution and the same total number of individuals.

Simulation of communities

library(mobsim)
comm_rand <- sim_poisson_community(s_pool = 30, n_sim = 300)
comm_agg <- sim_thomas_community(s_pool = 30, n_sim = 300, sigma = 0.05, mother_points = 1)
par(mfrow = c(1,2))
plot(comm_rand)
plot(comm_agg)

Analysis of spatially-explicit community data

mobsim mobsim offer functions to analyse spatially-explicit community data. For example the species-area relationship of a community can be easily evaluated.

sar_rand <- divar(comm_rand)
sar_agg <- divar(comm_agg)
plot(m_species ~ prop_area, data = sar_rand, type = "b", log = "xy",
     xlab = "Proportion of area sampled",ylab = "No. of species",
     ylim = c(3,30))
lines(m_species ~ prop_area, data = sar_agg, type = "b", col = 2)
legend("bottomright", c("Random","Aggregated"), col = 1:2, lwd = 2)

Sampling of communities

Simulated or observed communities can be also sampled inorder to test whether biodiversity changes are correctly detected and revealed by any sampling design.

par(mfrow = c(1,2))
samples_rand <- sample_quadrats(comm_rand, avoid_overlap = TRUE)
samples_agg <- sample_quadrats(comm_agg, avoid_overlap = TRUE)

Copy Link

Version

Install

install.packages('mobsim')

Monthly Downloads

231

Version

0.1.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Felix May

Last Published

November 2nd, 2017

Functions in mobsim (0.1.0)

divar

Diversity-area relationships
mobsim

mobsim: A package for spatial analysis of scale-dependent biodiversity changes.
rare_curve

Species rarefaction curve
plot.spec_sample_curve

Plot species sampling curves
abund_rect

----------------------------------------------------------------------------- Get local species abundance distribution
community

Create spatial community object
plot.divar

----------------------------------------------------------------------------- Plot diversity-area relationships
plot.sad

Plot species abundance distributions
div_rand_rect

Distribution of local diversity indices
div_rect

Get local diversity indices
sample_quadrats

Plot-based samples from a spatially-explicit census
sim_poisson_community

Simulate community with random spatial positions.
spec_sample

Sample species richness
spec_sample_curve

Non-spatial and spatially-explicit species sampling curves
plot.community

Plot spatial community object
plot.dist_decay

Plot distance decay of similarity
sim_poisson_coords

Simulate random spatial coordinates
sim_sad

Simulate species abundance distributions
summary.community

Print summary of spatial community object
summary.sad

Print summary of species abundance distribution object
community_to_sad

Get species abundance distribution from community object
dist_decay

Distance decay of similarity
sim_thomas_community

Simulate community with clumped spatial positions.
sim_thomas_coords

Simulate clumped spatial coordinates