Nothing
#' Get a count of all nodes
#'
#' @description
#'
#' From a graph object of class `dgr_graph`, get a count of nodes in the graph.
#'
#' @inheritParams render_graph
#'
#' @return A numeric vector of single length.
#'
#' @examples
#' # Create a graph with a
#' # path of nodes and 3
#' # unconnected nodes
#' graph <-
#' create_graph() %>%
#' add_path(n = 3) %>%
#' add_n_nodes(n = 3)
#'
#' # Get a count of all nodes
#' # in the graph
#' graph %>%
#' count_nodes()
#'
#' @export
count_nodes <- function(graph) {
# Validation: Graph object is valid
check_graph_valid(graph)
# If graph is empty, return 0
if (is_graph_empty(graph)) {
return(0L)
}
nrow(graph$nodes_df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.