View source: R/tar_blueprint.R
tar_blueprint | R Documentation |
Unlike drake, which requires some extra metaprogramming to "attach" blueprint
steps to a plan, targets pipelines allow for direct target construction.
Blueprints can thus be added directly into a tar_pipeline()
object using
this function. The arguments for tar_blueprint()
are exactly the same as
blueprint()
. tar_blueprints()
behaves like load_blueprints()
but is
called, like tar_blueprint()
, directly in a tar_pipeline()
object.
tar_blueprint(...)
tar_blueprints(directory = here::here("blueprints"), recurse = FALSE)
tar_blueprint_raw(bp)
... |
Arguments passed to |
directory |
A folder containing R scripts that evaluate to |
recurse |
Recursively loads blueprints from a directory if |
bp |
A blueprint object |
A list()
of tar_target
objects
By default, blueprintr ignore empty blueprint folders. However, it may be beneficial
to warn users if folder is empty, particularly during project setup. This helps
identify any potential misconfiguration of targets generation. To enable these warnings,
set option(blueprintr.warn_empty_blueprints_dirs = TRUE)
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.