Learn R Programming

drake (version 4.2.0)

outdated: Function outdated

Description

Check which targets are out of date and need to be rebuilt. IMPORTANT: you must be in the root directory of your project.

Usage

outdated(plan, targets = drake::possible_targets(plan),
  envir = parent.frame(), verbose = TRUE, cache = NULL,
  parallelism = drake::default_parallelism(), jobs = 1,
  packages = (.packages()), prework = character(0), config = NULL)

Arguments

plan

same as for make

targets

same as for make

envir

same as for make. Overrides config$envir.

verbose

same as for make

cache

optional drake cache. See codenew_cache(). The cache argument is ignored if a non-null config argument is supplied.

parallelism

same as for make

jobs

same as for make

packages

same as for make

prework

same as for make

config

option internal runtime parameter list of make(...), produced with config(). config$envir is ignored. Otherwise, computing config in advance could save time if you plan multiple calls to outdated().

See Also

missed, plan, make, plot_graph

Examples

Run this code
# NOT RUN {
load_basic_example()
outdated(my_plan)
make(my_plan)
outdated(my_plan)
# }

Run the code above in your browser using DataLab