The eccentricity of a vertex is its shortest path distance from the farthest other node in the graph. The smallest eccentricity in a graph is called its radius
radius(graph, mode = c("all", "out", "in", "total"))
The input graph, it can be directed or undirected.
Character constant, gives whether the shortest paths to or from
the given vertices should be calculated for directed graphs. If out
then the shortest paths from the vertex, if in
then to
it will be considered. If all
, the default, then the corresponding
undirected graph will be used, edge directions will be ignored. This
argument is ignored for undirected graphs.
A numeric scalar, the radius of the graph.
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.
Harary, F. Graph Theory. Reading, MA: Addison-Wesley, p. 35, 1994.
eccentricity
for the underlying
calculations, codedistances for general shortest path
calculations.
# NOT RUN {
g <- make_star(10, mode="undirected")
eccentricity(g)
radius(g)
# }
Run the code above in your browser using DataLab