Skip to contents

Convert jobset to tibble

Usage

# S3 method for class 'parade_jobset'
as_tibble(x, ...)

Arguments

x

A parade_jobset object

...

Additional arguments (unused)

Value

A tibble::tibble() with one row per job.

Examples

if (FALSE) { # \dontrun{
jobs <- slurm_map(1:4, function(x) x^2)
tibble::as_tibble(jobs)
} # }