cooccur
. This R package applies the probabilistic model of species co-occurrence (Veech 2013) to a set of species distributed among a set of survey or sampling sites. The algorithm calculates the observed and expected frequencies of co-occurrence between each pair of species. The expected frequency is based on the distribution of each species being random and independent of the other species. The analysis returns the probabilities that a more extreme (either low or high) value of co-occurrence could have been obtained by chance. The package also includes functions for visualizing species co-occurrence results and preparing data for downstream analyses.This function takes a community dataset (data frame or matrix) of species by site presence-absence data and classifies species pairs as having positive, negative, and random associations based on the probabilistic model of specie co-occurrence from Veech (2013). It produces an object of class cooccur
.
cooccur(mat, type = "spp_site", thresh = TRUE, spp_names = FALSE, true_rand_classifier = 0.1, prob = "hyper", site_mask = NULL, only_effects = FALSE, eff_standard = TRUE, eff_matrix = FALSE)
type="site_spp"
.
"spp_site"
meaning mat
specifies species by site (r,c) data. For site by species use "site_spp"
.
spp_names
should be TRUE to use them.
prob="hyper"
) or the combinatorics approach from Veech 2013 (prob="comb"
).
mat
, where each cell is a 1 or 0. 1 indicates sites that a species can exist and 0 indicates sites where the species cannot exist.
only_effects=TRUE
then should the effect sizes be standardized?
only_effects=TRUE
then should the effect sizes be returned in a distance matrix? The alternative is a list of pairs.cooccur
.
Griffith, Veech, and Marsh (2016). cooccur: Probabilistic Species Co-Occurrence Analysis in R. Journal of Statistical Software, 69(2), 1-17. doi:10.18637/jss.v069.c02
#data(finches)
#cooccur.finches <- cooccur(mat=finches,
# type="spp_site",
# thresh=TRUE,
# spp_names=TRUE)
#summary(cooccur.finches)
#plot(cooccur.finches)
Run the code above in your browser using DataLab