Learn R Programming

DiagrammeR (version 0.8.4)

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 that is created using create_graph.
name
the name to set for the graph.

Value

a graph object of class dgr_graph.

Examples

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

# Provide the new graph with a name
graph <- set_graph_name(graph, "example_name")

Run the code above in your browser using DataLab