Last chance! 50% off unlimited learning
Sale ends in
Get a data frame with node eccentricity values.
get_eccentricity(graph, mode = "out")
A data frame containing eccentricity values by node ID value.
A graph object of class dgr_graph
.
the mode with which the shortest paths to or from the given
vertices should be calculated for directed graphs. If out
(the
default) then the shortest paths from the node, if in
then only
shortest paths to each node are considered. If all
is used, then the
corresponding undirected graph will be used and edge directions will be
ignored. For undirected graphs, this argument is ignored.
# Create a random graph using the
# `add_gnm_graph()` function
graph <-
create_graph(
directed = FALSE) %>%
add_gnm_graph(
n = 10,
m = 15,
set_seed = 23)
# Get the eccentricity values for
# all nodes in the graph
graph %>% get_eccentricity()
Run the code above in your browser using DataLab