build_drake_graph {drake} | R Documentation |
Function build_drake_graph
![[Deprecated]](../help/figures/lifecycle-deprecated.svg)
Description
Use drake_config()
instead.
Usage
build_drake_graph(
plan,
targets = plan$target,
envir = parent.frame(),
verbose = 1L,
jobs = 1,
console_log_file = NULL,
trigger = drake::trigger(),
cache = NULL
)
Arguments
plan |
Workflow plan data frame.
A workflow plan data frame is a data frame
with a |
targets |
Character vector, names of targets to build. Dependencies are built too. You may supply static and/or whole dynamic targets, but no sub-targets. |
envir |
Environment to use. Defaults to the current
workspace, so you should not need to worry about this
most of the time. A deep copy of |
verbose |
Integer, control printing to the console/terminal.
|
jobs |
Maximum number of parallel workers for processing the targets.
You can experiment with |
console_log_file |
Deprecated in favor of |
trigger |
Name of the trigger to apply to all targets.
Ignored if |
cache |
drake cache as created by |
Details
Deprecated on 2018-11-02.
Value
An igraph
object.