join_edge_attrs {DiagrammeR} | R Documentation |
Join new edge attribute values in a left join using a data frame. The use of a left join in this function allows for no possibility that edges in the graph might be removed after the join.
join_edge_attrs(graph, df, by_graph = NULL, by_df = NULL)
graph |
a graph object of class
|
df |
the data frame to use for joining. |
by_graph |
optional specification of the column
in the graph's internal edge data frame for the left
join. If both |
by_df |
optional specification of the column in
|
a graph object of class
dgr_graph
.
# Set a seed set.seed(23) # Create a simple graph graph <- create_graph() %>% add_n_nodes(n = 5) %>% add_edges_w_string( edges = "1->2 1->3 2->4 2->5 3->5") # Create a data frame with node ID values # representing the graph edges (with `from` and `to` # columns), and, a set of numeric values df <- data.frame( from = c(1, 1, 2, 2, 3), to = c(2, 3, 4, 5, 5), values = rnorm(5, 5)) # Join the values in the data frame to the # graph's edges; this works as a left join using # identically-named columns in the graph and the df # (in this case `from` and `to` are common to both) graph <- graph %>% join_edge_attrs( df = df) # Get the graph's internal edf to show that the # join has been made get_edge_df(graph) #> id from to rel values #> 1 1 1 2 <NA> 5.996605 #> 2 2 1 3 <NA> 6.107490 #> 3 3 2 4 <NA> 4.721914 #> 4 4 2 5 <NA> 6.019205 #> 5 5 3 5 <NA> 5.045437