Visualizes joins between sources. Expects joins_df
with columns
left_table
, right_table
, left_field
, right_field
. If
relationships_df
is provided (modern relationships), it will render a
second graph highlighting those relationships.
Usage
plot_source_join_graph(joins_df, relationships_df = NULL)
Arguments
- joins_df
Data frame with join edges.
- relationships_df
Optional data frame with modern relationships.
Value
Invisibly returns the join graph, or a list list(joins = g, relationships = gr)
if relationships_df
is provided.