Description Usage Arguments Value References Examples
Proportion of all possible links that are realized. In a directed unipartite network C = \frac{L}{S^2}, in a directed newtork where species cannot interact with themselves C = \frac{L}{S(S-1)}. In undirected newtork, if species cannot interact with themselves C = \frac{L}{S\frac{S-1}{2}} otherwise C = \frac{L}{S\frac{S-1}{2}}. Where L is the number of links and S the number of species.
1 | connectance(graph, loops = TRUE, directed = TRUE)
|
graph |
an igraph object. |
loops |
logical: are species able to interact with themselves? |
directed |
logical: are interactions directed? |
numeric: the value of the connectance.
Delmas, E., Besson, M., Brice, M.-H., Burkle, L. A., Dalla Riva, G. V., Fortin, M.-J., … Poisot, T. (2019). Analysing ecological networks of species interactions. Biological Reviews.
1 2 3 4 5 6 7 | data(aleutian)
connectance(aleutian)
connectance(aleutian, loops = FALSE)
connectance(aleutian, directed = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.