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

undirected_example_net

Format

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

Details

This is a fictitious network used as an example.

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

Examples

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