get_degree_histogram {DiagrammeR} | R Documentation |
Get histogram data for a graph's degree frequency. The bin width is set to 1 and zero-value degrees are omitted from the output.
get_degree_histogram(graph, mode = "total")
graph |
a graph object of class
|
mode |
using |
a data frame with degree counts.
# 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 the # `random_graph` (reporting on total degree) graph %>% get_degree_histogram(mode = "total") #> degree total_degree_hist #> 1 0 1 #> 2 1 4 #> 3 2 4 #> 4 3 4 #> 5 4 5