missed
Report any import objects required by your workflow plan but missing from your workspace. IMPORTANT: you must be in the root directory of your project.
missed(plan, targets = drake::possible_targets(plan),
envir = parent.frame(), verbose = TRUE, jobs = 1,
parallelism = drake::default_parallelism(), packages = (.packages()),
prework = character(0), font_size = 20, config = NULL)
workflow plan data frame, same as for function
make()
.
names of targets to bulid, same as for function
make()
.
environment to import from, same as for function
make()
.
logical, whether to output messages to the console.
The outdated()
function is called internally,
and it needs to import objects and examine your
input files to see what has been updated. This could take some time,
and parallel computing may be needed
to speed up the process. The jobs
argument is number of parallel jobs
to use for faster computation.
Choice of parallel backend to speed up the computation.
See ?parallelism_choices
for details. The Makefile option is not
available here. Drake will try to pick the best option for your system by
default.
same as for make
same as for make
numeric, font size of the node labels in the graph
# NOT RUN {
load_basic_example()
missed(my_plan)
rm(reg1)
missed(my_plan)
# }
Run the code above in your browser using DataLab