Get degree distribution data for a graph. Graph degree is represented as a frequency of total degree values over all nodes in the graph.
get_degree_distribution(graph, mode = "total")
A graph object of class dgr_graph
.
using total
(the default), degree considered for each node
will be the total degree. With in
and out
the degree used
will be the in-degree and out-degree, respectively.
A data frame with degree frequencies.
# NOT RUN {
# 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 total degree
# distribution for the graph
graph %>%
get_degree_distribution(
mode = "total")
# }
Run the code above in your browser using DataLab