Contructs a tiledb_dim
object
Usage
tiledb_dim(name, domain, tile, type, ctx = tiledb_get_context())
Arguments
- name
The dimension name / label string. This argument is required.
- domain
The dimension (inclusive) domain. The dimension’s domain is defined by a (lower bound, upper bound) vector, and is usually either of type
integer
ordouble
(i.e.numeric
). For type,ASCII
NULL
is expected.- tile
The tile dimension tile extent. For type,
ASCII
NULL
is expected.- type
The dimension TileDB datatype string
- ctx
tiledb_ctx object (optional)
Examples
ctx <- tiledb_ctx(limitTileDBCores())
tiledb_dim(name = "d1", domain = c(1L, 10L), tile = 5L, type = "INT32")
#> tiledb_dim(name="d1", domain=c(1L,10L), tile=5L, type="INT32")