Learn R Programming

drake (version 4.4.0)

tracked: Function tracked

Description

Print out which objects, functions, files, targets, etc. are reproducibly tracked.

Usage

tracked(plan = workplan(), targets = drake::possible_targets(plan),
  envir = parent.frame(), jobs = 1, verbose = TRUE)

Arguments

plan

workflow plan data frame, same as for function make().

targets

names of targets to build, same as for function make().

envir

environment to import from, same as for function make().

jobs

number of jobs to accelerate the construction of the dependency graph. A light mclapply-based parallelism is used if your operating system is not Windows.

verbose

logical, whether to print progress messages to the console.

Examples

Run this code
# NOT RUN {
load_basic_example()
tracked(my_plan)
# }

Run the code above in your browser using DataLab