Learn R Programming

drake (version 5.2.1)

possible_targets: List the possible targets for the targets argument to make(), given a workflow plan data frame.

Description

Intended for internal use only.

Usage

possible_targets(plan = read_drake_plan())

Arguments

plan

workflow plan data frame

Value

Character vector of possible targets given the workflow plan.

See Also

make()

Examples

Run this code
# NOT RUN {
test_with_dir("Quarantine side effects.", {
load_mtcars_example() # Get the code with drake_example("mtcars").
# List the possible targets you could choose for the
# `targets` argument to make(). You may choose any subset.
possible_targets(my_plan)
})
# }

Run the code above in your browser using DataLab