get_degree_distribution {DiagrammeR} | R Documentation |
Get total degree distribution data for a graph
Description
Get degree distribution data for a graph. Graph degree is represented as a frequency of total degree values over all nodes in the graph.
Usage
get_degree_distribution(graph, mode = "total")
Arguments
graph |
A graph object of class |
mode |
using |
Value
A data frame with degree frequencies.
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 total degree
# distribution for the graph
graph %>%
get_degree_distribution(
mode = "total")
[Package DiagrammeR version 1.0.11 Index]