eccentricity | R Documentation |
The eccentricity of a vertex is its shortest path distance from the farthest other node in the graph.
eccentricity(
graph,
vids = V(graph),
...,
weights = NULL,
mode = c("all", "out", "in", "total")
)
graph |
The input graph, it can be directed or undirected. |
vids |
The vertices for which the eccentricity is calculated. |
... |
These dots are for future extensions and must be empty. |
weights |
Possibly a numeric vector giving edge weights. If this is
|
mode |
Character constant, gives whether the shortest paths to or from
the given vertices should be calculated for directed graphs. If |
The eccentricity of a vertex is calculated by measuring the shortest distance from (or to) the vertex, to (or from) all vertices in the graph, and taking the maximum.
This implementation ignores vertex pairs that are in different components. Isolate vertices have eccentricity zero.
eccentricity()
returns a numeric vector, containing the
eccentricity score of each given vertex.
igraph_eccentricity_dijkstra()
.
Harary, F. Graph Theory. Reading, MA: Addison-Wesley, p. 35, 1994.
radius()
for a related concept,
distances()
for general shortest path calculations.
Other paths:
all_simple_paths()
,
diameter()
,
distance_table()
,
graph_center()
,
radius()
g <- make_star(10, mode = "undirected")
eccentricity(g)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.