R/open_graph.R

Defines functions open_graph

Documented in open_graph

#' Read a graph or graph series from disk
#'
#' @description
#'
#' Load a graph or a graph series object from disk.
#'
#' @param file The filename for the graph or graph series. Optionally, this may
#'   contain a path to the file.
#' @examples
#' # Create an undirected GNP
#' # graph with 100 nodes using
#' # a probability value of 0.05
#' gnp_graph <-
#'   create_graph(
#'     directed = FALSE) %>%
#'   add_gnp_graph(
#'     n = 100,
#'     p = 0.05
#'   )
#'
#' # Save the graph to disk; use
#' # the file name `gnp_graph.dgr`
#' # save_graph(
#' #   x = gnp_graph,
#' #   file = "gnp_graph"
#' # )
#'
#' # To read the graph file from
#' # disk, use `open_graph()`
#' # gnp_graph_2 <-
#' #   open_graph(
#' #     file = "gnp_graph.dgr"
#' #   )
#'
#' @export
open_graph <- function(file) {

  check_string(file)

  # Read the graph or graph series
  x <- readRDS(file = file)

  if (!rlang::inherits_any(x, c("dgr_graph", "dgr_graph_1D"))) {

    cli::cli_abort(c(
      "The object must be a graph or graph series.",
      i = "Make sure that {.file {file}} contains a graph or graph series."))
  }

  x
}
rich-iannone/DiagrammeR documentation built on Feb. 5, 2024, 8 a.m.