DiagrammeR (version 0.9.2)

get_degree_distribution: 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 dgr_graph.

mode

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.

Value

a data frame with degree frequencies.

Examples

Run this code
# NOT RUN {
# Create a random, directed graph with
# 18 nodes and 22 edges
graph <-
  create_random_graph(
    n = 18, m = 22,
    set_seed = 23)

# Get the total degree distribution for
# the `random_graph` graph
graph %>%
  get_degree_distribution(mode = "total")
#>   degree total_degree_dist
#> 1      0        0.05555556
#> 2      1        0.22222222
#> 3      2        0.22222222
#> 4      3        0.22222222
#> 5      4        0.27777778
# }

Run the code above in your browser using DataLab