Visualize a ConnectDAG graph with plotly
dag_plotly.RdCreate an interactive plotly visual of the DAG. This function is not exported. It is called internally by the ConnectDAG class using the `plot` method.
Examples
task0 <- connect_task("task0", simulated = TRUE)
task1 <- connect_task("task1", simulated = TRUE)
task0 |> set_downstream(task1)
my_dag <- connect_dag(task0, task1)
plot(my_dag)