R/dependencies.R
In other words, list all the nodes in your project's dependency network.
tracked(plan = read_drake_plan(), targets = drake::possible_targets(plan), envir = parent.frame(), jobs = 1, verbose = drake::default_verbose())
plan | workflow plan data frame, same as for function
|
---|---|
targets | names of targets to build, same as for function
|
envir | environment to import from, same as for function
|
jobs | number of jobs/workers for parallel processing |
verbose | logical or numeric, control printing to the console.
Use
|
A character vector with the names of reproducibly-tracked targets.
# NOT RUN { test_with_dir("Quarantine side effects.", { load_basic_example() # Load the canonical example for drake. # List all the targets/imports that are reproducibly tracked. tracked(my_plan) }) # }