estimate_edge_betweenness {igraph} | R Documentation |
Deprecated version of edge_betweenness()
Description
Use edge_betweenness()
with the cutoff
argument instead.
Usage
estimate_edge_betweenness(
graph,
e = E(graph),
directed = TRUE,
cutoff,
weights = NULL
)
Arguments
graph |
The graph to analyze. |
e |
The edges for which the edge betweenness will be calculated. |
directed |
Logical, whether directed paths should be considered while determining the shortest paths. |
cutoff |
The maximum path length to consider when calculating the betweenness. If zero or negative then there is no such limit. |
weights |
Optional positive weight vector for calculating weighted
betweenness. If the graph has a |
[Package igraph version 2.0.3 Index]