Deprecated on 2020-03-23. Use drake_progress()
instead.
progress(
...,
list = character(0),
no_imported_objects = NULL,
path = NULL,
search = NULL,
cache = drake::drake_cache(path = path),
verbose = 1L,
jobs = 1,
progress = NULL
)
The build progress of each target reached by
the current make()
so far.
Objects to load from the cache, as names (unquoted)
or character strings (quoted). If the tidyselect
package is installed,
you can also supply dplyr
-style tidyselect
commands such as starts_with()
, ends_with()
, and one_of()
.
Character vector naming objects to be loaded from the
cache. Similar to the list
argument of remove()
.
Logical, whether to only return information about imported files and targets with commands (i.e. whether to ignore imported objects that are not files).
Path to a drake
cache
(usually a hidden .drake/
folder) or NULL
.
Deprecated.
drake cache. See new_cache()
.
If supplied, path
is ignored.
Deprecated on 2019-09-11.
Number of jobs/workers for parallel processing.
Character vector for filtering the build progress results.
Defaults to NULL
(no filtering) to report progress of all objects.
Supported filters are "done"
, "running"
, and "failed"
.