Skip to contents

Centrality measures

Usage

edge_betweenness(graph, directed = is_directed(graph), weights = numeric(0))

edge_betweenness_subset(
  graph,
  directed = is_directed(graph),
  eids = integer(0),
  weights = numeric(0),
  from = integer(0),
  to = integer(0)
)

Arguments

graph

igraph_ptr object.

directed

Boolean, whether to consider directed paths. Ignored for undirected graphs.

weights

Numeric edge weights; TRUE to use Eattr(graph, "weight").

eids

Edges of interest.

from

Vertices of interest.

to

Vertices of interest.