Deprecated on 2020-03-23. Use drake_progress() instead.
Usage
progress(
...,
list = character(0),
no_imported_objects = NULL,
path = NULL,
search = NULL,
cache = drake::drake_cache(path = path),
verbose = 1L,
jobs = 1,
progress = NULL
)Arguments
- ...
Objects to load from the cache, as names (unquoted) or character strings (quoted). If the
tidyselectpackage is installed, you can also supplydplyr-styletidyselectcommands such asstarts_with(),ends_with(), andone_of().- list
Character vector naming objects to be loaded from the cache. Similar to the
listargument ofremove().- no_imported_objects
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
Path to a
drakecache (usually a hidden.drake/folder) orNULL.- search
Deprecated.
- cache
drake cache. See
new_cache(). If supplied,pathis ignored.- verbose
Deprecated on 2019-09-11.
- jobs
Number of jobs/workers for parallel processing.
- progress
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".
Value
The build progress of each target reached by
the current make() so far.