graph.cm: Graph a Community Matrix

Description Usage Arguments Details Author(s) References See Also Examples

View source: R/graph.cm.R

Description

Represents a community matrix as a signed digraph in the dot language.

Usage

1
graph.cm(CM, file, color="bw")

Arguments

CM

a community matrix to be graphed.

file

a connection or a character string giving the name of the dot file (should have a .dot suffix).

color

select which color mode to graph the system: bw, color, or greyscale. Default bw is black and white.

Details

This function outputs a dot file for use with graphviz or similar graph layout package to visually represent the community matrix system. The color options color and greyscale assist in graph readability when there are a large number of nodes and connections between them.

Author(s)

Alexis Dinno https://www.alexisdinno.com/LoopAnalyst/

References

Gansner, E., Koutsofios, E. and North, S. (2002) Drawing graphs with dot. http://www.graphviz.org

Puccia, C. J. and Levins, R. (1986) Qualitative Modeling of Complex Systems: An Introduction to Loop Analysis and Time Averaging. Cambridge: Harvard University Press.

See Also

make.cm.

Examples

1
2
3
4
5
6
7
## graph a community matrix
data(cm.levins)
graph.cm(cm.levins, file="levins.dot")

## graph a community matrix
data(cm.dambacher)
graph.cm(cm.dambacher, file="dambacher.dot", color="color")

Example output

Loading required package: nlme

LoopAnalyst documentation built on May 2, 2019, 5:14 a.m.