Nothing
#' Get global graph attributes
#'
#' @description
#'
#' Get the available global attributes for a graph object of class `dgr_graph`.
#'
#' @inheritParams render_graph
#'
#' @return A data frame containing global attributes for the graph.
#'
#' @examples
#' # Create a new, empty graph
#' graph <- create_graph()
#'
#' # View the graph's set of
#' # global attributes
#' graph %>%
#' get_global_graph_attr_info()
#'
#' @export
get_global_graph_attr_info <- function(graph) {
# Validation: Graph object is valid
check_graph_valid(graph)
if (nrow(graph$global_attrs) == 0) {
global_graph_attrs_tbl <-
dplyr::tibble(
attr = character(),
value = character(),
attr_type = character()
)
} else if (nrow(graph$global_attrs) > 0) {
global_graph_attrs_tbl <- dplyr::as_tibble(graph$global_attrs)
}
global_graph_attrs_tbl
}
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.