## ----include = FALSE---------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>", eval = FALSE ) ## ----------------------------------------------------------------------------- # # Check if bundle already exists # dplyneage::has_bundle() # # # Build (or force-rebuild) the bundle - internal developer helper # dplyneage:::build_bundle() # dplyneage:::build_bundle(force = TRUE) ## ----------------------------------------------------------------------------- # devtools::load_all() # # lineage_flow( # nodes = list( # list(id = "1", position = list(x = 0, y = 0), # data = list(label = "Source")), # list(id = "2", position = list(x = 250, y = 100), # data = list(label = "Transform")), # list(id = "3", position = list(x = 500, y = 0), # data = list(label = "Output")) # ), # edges = list( # list(id = "e1-2", source = "1", target = "2"), # list(id = "e2-3", source = "2", target = "3") # ) # )