add_edges_from_table {DiagrammeR} | R Documentation |
Add edges and attributes to graph from a table
Description
Add edges and their attributes to an existing graph object from data in a CSV file or a data frame.
Usage
add_edges_from_table(
graph,
table,
from_col,
to_col,
from_to_map,
rel_col = NULL,
set_rel = NULL,
drop_cols = NULL
)
Arguments
graph |
A graph object of class |
table |
Either a path to a CSV file, or, a data frame object. |
from_col |
The name of the table column from which edges originate. |
to_col |
The name of the table column to which edges terminate. |
from_to_map |
A single character value for the mapping of the |
rel_col |
An option to apply a column of data in the table as |
set_rel |
an optional string to apply a |
drop_cols |
An optional column selection statement for dropping columns
from the external table before inclusion as attributes in the graph's
internal edge data frame. Several columns can be dropped by name using the
syntax |
Value
A graph object of class dgr_graph
.
See Also
Other edge creation and removal:
add_edge()
,
add_edge_clone()
,
add_edge_df()
,
add_edges_w_string()
,
add_forward_edges_ws()
,
add_reverse_edges_ws()
,
copy_edge_attrs()
,
create_edge_df()
,
delete_edge()
,
delete_edges_ws()
,
delete_loop_edges_ws()
,
drop_edge_attrs()
,
edge_data()
,
join_edge_attrs()
,
mutate_edge_attrs()
,
mutate_edge_attrs_ws()
,
recode_edge_attrs()
,
rename_edge_attrs()
,
rescale_edge_attrs()
,
rev_edge_dir()
,
rev_edge_dir_ws()
,
set_edge_attr_to_display()
,
set_edge_attrs()
,
set_edge_attrs_ws()
Examples
# Create an empty graph and then
# add nodes to it from the
# `currencies` dataset available
# in the package
graph <-
create_graph() %>%
add_nodes_from_table(
table = currencies)
# Now we want to add edges to the
# graph using an included dataset,
# `usd_exchange_rates`, which has
# exchange rates between USD and
# many other currencies; the key
# here is that the data in the
# `from` and `to` columns in the
# external table maps to graph
# node data available in the
# `iso_4217_code` column of the
# graph's internal node data frame
graph_1 <-
graph %>%
add_edges_from_table(
table = usd_exchange_rates,
from_col = from_currency,
to_col = to_currency,
from_to_map = iso_4217_code)
# View part of the graph's
# internal edge data frame
graph_1 %>%
get_edge_df() %>%
head()
# If you would like to assign
# any of the table's columns as the
# `rel` attribute, this can done
# with the `rel_col` argument; to
# set a static `rel` attribute for
# all edges created, use `set_rel`
graph_2 <-
graph %>%
add_edges_from_table(
table = usd_exchange_rates,
from_col = from_currency,
to_col = to_currency,
from_to_map = iso_4217_code,
set_rel = "from_usd")
# View part of the graph's internal
# edge data frame (edf)
graph_2 %>%
get_edge_df() %>%
head()