# 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 degree histogram data for `random_graph`
graph %>% get_degree_histogram()
#> 0 1 2 3 4
#> 1 4 4 4 5
# }
Run the code above in your browser using DataLab