This set of functions can be used for calculations that involve node pairs. If the calculateable measure is not symmetric the function will come in two flavours, differentiated with _to/_from suffix. The *_to() functions will take the provided node indexes as the target node (recycling if necessary). For the *_from() functions the provided nodes are taken as the source. As for the other wrappers provided, they are intended for use inside the tidygraph framework and it is thus not necessary to supply the graph being computed on as the context is known.
nodes: The other part of the node pair (the first part is the node defined by the row). Recycled if necessary.
mode: How should edges be followed? If 'all' all edges are considered, if 'in' only inbound edges are considered, and if 'out' only outbound edges are considered
weights: The weights to use for calculation
algorithm: The distance algorithms to use. By default it will try to select the fastest suitable algorithm. Possible values are "automatic", "unweighted", "dijkstra", "bellman-ford", and "johnson"
loops: Should loop edges be considered
method: The similarity measure to calculate. Possible values are: "jaccard", "dice", and "invlogweighted"
capacity: The edge capacity to use
Returns
A numeric vector of the same length as the number of nodes in the graph
Functions
node_adhesion_to(): Calculate the adhesion to the specified node. Wraps igraph::edge_connectivity()
node_adhesion_from(): Calculate the adhesion from the specified node. Wraps igraph::edge_connectivity()
node_cohesion_to(): Calculate the cohesion to the specified node. Wraps igraph::vertex_connectivity()
node_cohesion_from(): Calculate the cohesion from the specified node. Wraps igraph::vertex_connectivity()
node_distance_to(): Calculate various distance metrics between node pairs. Wraps igraph::distances()
node_distance_from(): Calculate various distance metrics between node pairs. Wraps igraph::distances()