get_run_jobs() is superseded by inspect_project(input, run_id)$jobs. It
remains available as a compatibility wrapper and returns a data-frame
subclass with compact printing.
Arguments
- input
A project configuration object, YAML file, or project directory.
- run_id
Run ID returned by
run_project()or listed ininspect_project(input)$runs. Use"latest"for the most recently recorded run.
See also
inspect_project() for summarized progress, diagnose_project() for a failure-focused summary, and
find_run_logs() for log-file locations.
Examples
if (FALSE) { # \dontrun{
jobs <- get_run_jobs(scfg, run$run_id)
jobs[, c("job_id", "job_name", "status")]
} # }