A one-mode directed network of 5 individuals represented as a `network` object.

directed_example_net

Format

An `network` object with 5 nodes and 8 edges.

Details

This is a fictitious network used as an example.

Vertex attributes: - `vertex.names`: Name of individual

Examples

data( directed_example_net )
sna::gplot( directed_example_net )
#> Error in sna::gplot(directed_example_net): Error in gplot: no layout function for mode fruchtermanreingold
# coerce to a matrix
as.matrix( directed_example_net )
#>      Jen Tom Bob Leaf Jim
#> Jen    0   1   0    0   0
#> Tom    0   0   1    0   0
#> Bob    0   0   0    1   1
#> Leaf   0   0   1    0   1
#> Jim    0   0   1    1   0