cached_unplanned {drake} | R Documentation |
List targets in the cache but not the plan.
Description
Includes dynamic sub-targets as well. See examples for details.
Usage
cached_unplanned(
plan,
path = NULL,
cache = drake::drake_cache(path = path),
namespace = NULL,
jobs = 1
)
Arguments
plan |
A drake plan. |
path |
Path to a |
cache |
drake cache. See |
namespace |
Character scalar, name of the storr namespace to use for listing objects. |
jobs |
Number of jobs/workers for parallel processing. |
Value
A character vector of target and sub-target names.
See Also
Examples
## Not run:
isolate_example("cache_unplanned() example", {
plan <- drake_plan(w = 1)
make(plan)
cached_unplanned(plan)
plan <- drake_plan(
x = seq_len(2),
y = target(x, dynamic = map(x))
)
cached_unplanned(plan)
make(plan)
cached_unplanned(plan)
# cached_unplanned() helps clean superfluous targets.
cached()
clean(list = cached_unplanned(plan))
cached()
})
## End(Not run)
[Package drake version 7.13.10 Index]