List started targets.
List targets whose progress is "started"
.
tar_started(names = NULL, store = targets::tar_config_get("store"))
names |
Optional, names of the targets. If supplied, the
function restricts its output to these targets.
You can supply symbols
or |
store |
Character of length 1, path to the
|
A character vector of started targets.
Other progress:
tar_built()
,
tar_canceled()
,
tar_errored()
,
tar_poll()
,
tar_progress_branches()
,
tar_progress_summary()
,
tar_progress()
,
tar_skipped()
,
tar_watch_server()
,
tar_watch_ui()
,
tar_watch()
if (identical(Sys.getenv("TAR_EXAMPLES"), "true")) { tar_dir({ # tar_dir() runs code from a temporary directory. tar_script({ list( tar_target(x, seq_len(2)), tar_target(y, 2 * x, pattern = map(x)) ) }, ask = FALSE) tar_make() tar_started() tar_started(starts_with("y_")) # see also all_of() }) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.