Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

delete_node

Delete a node from an existing graph object


Description

From a graph object of class dgr_graph, delete an existing node by specifying its node ID.

Usage

delete_node(graph, node)

Arguments

graph

A graph object of class dgr_graph.

node

A node ID for the node to be deleted from the graph.

Value

A graph object of class dgr_graph.

See Also

Examples

# Create a graph with 5 nodes and
# edges between each in a path
graph <-
  create_graph() %>%
  add_path(n = 5)

# Delete node with ID `3`
graph <- delete_node(graph, node = 3)

# Verify that the node with ID `3`
# is no longer in the graph
graph %>% get_node_ids()

# Also note that edges are removed
# since there were edges between the
# removed node to and from other nodes
graph %>% get_edges()

DiagrammeR

Graph/Network Visualization

v1.0.6.1
MIT + file LICENSE
Authors
Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.