View source: R/clear_selection.R
clear_selection | R Documentation |
Clear the selection of nodes or edges within a graph object.
clear_selection(graph)
graph |
A graph object of class |
A graph object of class dgr_graph
.
# Create a graph with
# a single path
graph <-
create_graph() %>%
add_path(n = 5)
# Select nodes with IDs `1`
# and `3`
graph <-
graph %>%
select_nodes(
nodes = c(1, 3))
# Verify that a node selection
# has been made
graph %>% get_selection()
# Clear the selection with
# `clear_selection()`
graph <-
graph %>%
clear_selection()
# Verify that the node
# selection has been cleared
graph %>% get_selection()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.