Skip to contents

Create a TileDB Group at the given path

Usage

tiledb_group_create(uri, ctx = tiledb_get_context())

Arguments

uri

Character variable with the URI of the new group

ctx

(optional) A TileDB Ctx object; if not supplied the default context object is retrieved

Value

The uri path, invisibly

Examples

ctx <- tiledb_ctx(limitTileDBCores())
if (FALSE) {
pth <- tempdir()
tiledb_group_create(pth)
tiledb_object_type(pth)
}