These functions return values or vectors relating to how broad a network is.
net_diameter() measures the maximum path length in the network.
net_length() measures the average path length in the network.
net_by_diameter(.data)
net_by_length(.data)A network object of class mnet, igraph, tbl_graph, network, or similar.
For more information on the standard coercion possible,
see manynet::as_tidygraph().
Other measures:
measure_assortativity,
measure_brokerage,
measure_central_between,
measure_central_close,
measure_central_degree,
measure_central_eigen,
measure_closure,
measure_cohesion,
measure_diffusion_infection,
measure_diffusion_net,
measure_diffusion_node,
measure_features,
measure_fragmentation,
measure_heterogeneity,
measure_hierarchy,
measure_holes,
measure_periods,
member_diffusion
Other cohesion:
mark_triangles,
measure_cohesion,
measure_fragmentation
net_by_diameter(fict_marvel)
#> [1] 4
net_by_diameter(to_giant(fict_marvel))
#> [1] 4
net_by_length(fict_marvel)
#> [1] 2.41
net_by_length(to_giant(fict_marvel))
#> [1] 2.41