node_data | R Documentation |
This helper function should be invoked to provide values for the namesake
node_data
argument, which is present in any function where nodes are
created.
node_data(...)
... |
Node data attributes provided as one or more named vectors. |
Other node creation and removal:
add_n_node_clones()
,
add_n_nodes()
,
add_n_nodes_ws()
,
add_node()
,
add_node_clones_ws()
,
add_node_df()
,
add_nodes_from_df_cols()
,
add_nodes_from_table()
,
colorize_node_attrs()
,
copy_node_attrs()
,
create_node_df()
,
delete_node()
,
delete_nodes_ws()
,
drop_node_attrs()
,
join_node_attrs()
,
layout_nodes_w_string()
,
mutate_node_attrs()
,
mutate_node_attrs_ws()
,
recode_node_attrs()
,
rename_node_attrs()
,
rescale_node_attrs()
,
set_node_attr_to_display()
,
set_node_attr_w_fcn()
,
set_node_attrs()
,
set_node_attrs_ws()
,
set_node_position()
# Create a new graph and add
# a path with several node
# data attributes
graph <-
create_graph() %>%
add_path(
n = 3,
type = "path",
node_data = node_data(
hour = 5,
index = c(1, 3, 2)))
# View the graph's internal
# node data frame; the node
# data attributes have been
# inserted
graph %>% get_node_df()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.