View source: R/get_degree_total.R
| get_degree_total | R Documentation | 
Get the total degree values for all nodes in a graph.
get_degree_total(graph, normalized = FALSE)
graph | 
 A graph object of class   | 
normalized | 
 set as   | 
A data frame with total degree values for each of the nodes.
# 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 values
# for all nodes in the graph
graph %>%
  get_degree_total()
# Add the total degree values
# to the graph as a node
# attribute
graph <-
  graph %>%
  join_node_attrs(
    df = get_degree_total(.))
# Display the graph's
# node data frame
graph %>% get_node_df()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.