get_eccentricity {DiagrammeR} | R Documentation |
Get node eccentricities
Description
Get a data frame with node eccentricity values.
Usage
get_eccentricity(graph, mode = "out")
Arguments
graph |
A graph object of class |
mode |
the mode with which the shortest paths to or from the given
vertices should be calculated for directed graphs. If |
Value
A data frame containing eccentricity values by node ID value.
Examples
# 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()
[Package DiagrammeR version 1.0.11 Index]