# NOT RUN {
# Create a random graph
graph <-
create_random_graph(
n = 10, m = 22,
set_seed = 23)
# Add three graph actions to the
# graph
graph <-
graph %>%
add_graph_action(
fcn = "rescale_node_attrs",
node_attr_from = "pagerank",
node_attr_to = "width",
action_name = "pgrnk_to_width") %>%
add_graph_action(
fcn = "set_node_attr_w_fcn",
node_attr_fcn = "get_pagerank",
column_name = "pagerank",
action_name = "get_pagerank") %>%
add_graph_action(
fcn = "colorize_node_attrs",
node_attr_from = "width",
node_attr_to = "fillcolor",
action_name = "pgrnk_fillcolor")
# View the graph actions for the graph
# object by using the function called
# `get_graph_actions()`
graph %>%
get_graph_actions()
#> # A tibble: 3 x 3
#> action_index action_name
#> <dbl> <chr>
#> 1 1 pgrnk_to_width
#> 2 2 get_pagerank
#> 3 3 pgrnk_fillcolor
#> # ... with 1 more variables:
#> # expression <chr>
# We note that the order isn't
# correct and that the `get_pagerank`
# action should be the 1st action
# and `pgrnk_to_width` should go
# in 2nd place; to fix this, use the
# function `reorder_graph_actions()`
# and specify the reordering with a
# numeric vector
graph <-
graph %>%
reorder_graph_actions(
indices = c(2, 1, 3))
# View the graph actions for the graph
# object once again to verify that
# we have the desired order of actions
graph %>%
get_graph_actions()
#> # A tibble: 3 x 3
#> action_index action_name
#> <int> <chr>
#> 1 1 get_pagerank
#> 2 2 pgrnk_to_width
#> 3 3 pgrnk_fillcolor
#> # ... with 1 more variables:
#> # expression <chr>
# }
Run the code above in your browser using DataLab