missed {drake} | R Documentation |
Report any import objects required by your drake_plan plan but missing from your workspace or file system.
Description
Checks your workspace/environment and file system.
Usage
missed(..., config = NULL)
Arguments
... |
Arguments to |
config |
Deprecated. |
Value
Character vector of names of missing objects and files.
See Also
Examples
## Not run:
isolate_example("Quarantine side effects.", {
if (suppressWarnings(require("knitr"))) {
plan <- drake_plan(x = missing::fun(arg))
missed(plan)
}
})
## End(Not run)
[Package drake version 7.13.10 Index]