DiagrammeR (version 1.0.6.1)

set_graph_name: Set graph name

Description

Set a name for a graph object of class dgr_graph.

Usage

set_graph_name(graph, name)

Arguments

graph

A graph object of class dgr_graph.

name

The name to set for the graph.

Value

A graph object of class dgr_graph.

Examples

Run this code
# NOT RUN {
# Create an empty graph
graph <- create_graph()

# Provide the new graph with a name
graph <-
  graph %>%
  set_graph_name(
    name = "example_name")

# }

Run the code above in your browser using DataLab