View source: R/get_graph_log.R
get_graph_log | R Documentation |
Get a tibble of the graph log, which contains information on the functions called on the graph that resulted in some transformation of the graph.
get_graph_log(graph)
graph |
A graph object of class |
A df_tbl
object.
# Create a random graph using the
# `add_gnm_graph()` function and
# delete 2 nodes from the graph
graph <-
create_graph(
directed = FALSE) %>%
add_gnm_graph(
n = 10,
m = 15,
set_seed = 23) %>%
delete_node(node = 5) %>%
delete_node(node = 7)
# Get the graph log, which is a
# record of all graph transformations
graph %>% get_graph_log()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.