UncInd: Network uncertainty indices and constraint effiencies

Description Usage Arguments Details Value Author(s) References Examples

Description

Calculates the statistical, conditional and realised uncertainty, the average mutual information index, and the network uncertainty, network constraint and constraint efficiency,...

Usage

1
2
UncInd(Flow = NULL, Tij = t(Flow), 
       Import = NULL, Export = NULL)

Arguments

Flow

network matrix with Flow[i,j] the flow from i (row) to j (column); component positions in rows and columns must be the same; if present, rownames or columnnames denote the compartment names.

Tij

network matrix where connectance is from column j to row i; component positions in rows and columns must be the same ; if present, rownames or columnnames denote the compartment names.

Import

vector with either the *indices* or the *names* of external compartmens from where flow enters the network; the indices point to the column positions in Tij (and the row positions in Flow).

Export

vector with either the *indices* or the *names* of external compartmens to where flow leaves the network; the indices point to the row positions in Tij (and the column positions in Flow).

Details

The mathematical formulation of these indices can be found in the package vignette - vignette("NetIndices").

The PDF can be found in the subdirectory ‘doc’ of the NetIndices package.

Value

a list with the following items:

AMI

the average mutual information; as a system matures to form a web-like pattern, the AMI drops.

HR

the statistical uncertainty, upper bound on AMI, a measure of diversity.

DR

the conditional uncertainty index, the difference between AMI and HR, a measure of stability.

RU

the realised uncertainty index, ratio of AMI and HR.

Hmax

maximum uncertainty.

Hc

constraint information.

Hsys

network uncertainy.

CE

constraint efficiency.

Author(s)

Karline Soetaert <karline.soetaert@nioz.nl>, Julius Kipyegon Kones<jkones@uonbi.ac.ke>

References

Latham LG. 2006. Network flow analysis algorithms. Ecological Modelling 192: 586-600.

Ulanowicz RE, Norden JS. 1990. Symmetrical overhead in flow networks. International Journal of System Science 21: 429-437.

Gallager RG. 1968. Information Theory and Reliable Communication. Wiley, New York.

Shannon CE. 1948. A mathematical theory of communication. Bell System Technical Journal 27: 379-423.

Ulanowicz RE. 1997. Ecology, the ascendent perspective. Allen TFH, Roberts DW, editors. Complexity in Ecological Systems Series. Columbia University Press, New York..

Latham LG, Scully EP. 2002. Quantifying constraint to assess development in ecological networks. Ecological Modelling 154: 25-44.

Rutledge RW, Basorre BL, Mulholland RJ. 1976. Ecological stability: an information theory viewpoint. Journal of Theoretical Biology 57: 355-371.

Kones, J.K., Soetaert, K., van Oevelen, D. and J.Owino (2009). Are network indices robust indicators of food web functioning? a Monte Carlo approach. Ecological Modelling, 220, 370-382.

Examples

1
2
3
4
5
6
7
8
9
# The takapoto atoll network
UncInd(Takapoto, Import = "CO2",
       Export = c("CO2", "Sedimentation", "Grazing"))

# Conesprings is the example set 1a from Latham 2006.
as.data.frame(
   UncInd(Tij = Conesprings, Import = "Inflows",
          Export = c("Export", "Dissipation"))
)

NetIndices documentation built on July 21, 2019, 3 p.m.