Skip to contents

List existing bundles

Usage

hipercow_bundle_list(root = NULL)

Arguments

root

A hipercow root, or path to it. If NULL we search up your directory tree.

Value

A data.frame with columns name and time, ordered by time (most recent first)

Examples

cleanup <- hipercow_example_helper()
#>  This example uses a special helper

# With no bundles present
hipercow_bundle_list()
#> [1] name time
#> <0 rows> (or 0-length row.names)

# With a bundle
bundle <- task_create_bulk_expr(sqrt(x), data.frame(x = 1:5))
#>  Submitted 5 tasks using 'example'
#>  Created bundle 'congenial_dassierat' with 5 tasks
hipercow_bundle_list()
#>                  name                time
#> 1 congenial_dassierat 2024-08-16 20:20:25

cleanup()
#>  Cleaning up example