Use edge_betweenness()
with the cutoff
argument instead.
estimate_edge_betweenness(
graph,
e = E(graph),
directed = TRUE,
cutoff,
weights = NULL
)
The graph to analyze.
The edges for which the edge betweenness will be calculated.
Logical, whether directed paths should be considered while determining the shortest paths.
The maximum shortest path length to consider when calculating betweenness. If negative, then there is no such limit.
Optional positive weight vector for calculating weighted
betweenness. If the graph has a weight
edge attribute, then this is
used by default. Weights are used to calculate weighted shortest paths,
so they are interpreted as distances.