- graph
A graph object of class dgr_graph
.
- n_islands
The number of islands in the generated graph.
- island_size
The size of the islands in the generated graph.
- p
The probability of there being edges between the islands.
- edges_between
The number of edges between islands.
- type
An optional string that describes the entity type for all the
nodes to be added.
- label
A logical value where setting to TRUE
ascribes node IDs to the
label and FALSE
yields a blank label.
- rel
An optional string for providing a relationship label to all edges
to be added.
- node_aes
An optional list of named vectors comprising node aesthetic
attributes. The helper function node_aes()
is strongly recommended for
use here as it contains arguments for each of the accepted node aesthetic
attributes (e.g., shape
, style
, color
, fillcolor
).
- edge_aes
An optional list of named vectors comprising edge aesthetic
attributes. The helper function edge_aes()
is strongly recommended for
use here as it contains arguments for each of the accepted edge aesthetic
attributes (e.g., shape
, style
, penwidth
, color
).
- node_data
An optional list of named vectors comprising node data
attributes. The helper function node_data()
is strongly recommended for
use here as it helps bind data specifically to the created nodes.
- edge_data
An optional list of named vectors comprising edge data
attributes. The helper function edge_data()
is strongly recommended for
use here as it helps bind data specifically to the created edges.
- set_seed
Supplying a value sets a random seed of the
Mersenne-Twister
implementation.