tiledb_attr
objectConstructs a tiledb_attr
object
tiledb_attr(
name,
type,
filter_list = tiledb_filter_list(),
ncells = 1,
nullable = FALSE,
enumeration = NULL,
ctx = tiledb_get_context()
)
tiledb_dim
object
The dimension name / label string; if missing default ""
is used.
The tiledb_attr TileDB datatype string; if missing the user is alerted that this is a required parameter.
(default filter_list("NONE")) An optional tiledb_filter_list object
(default 1) The number of cells, use NA
to signal variable length
(default FALSE) A logical switch whether the attribute can have missing values
(default NULL) A character vector of dictionary values
tiledb_ctx object (optional)
ctx <- tiledb_ctx(limitTileDBCores())
flt <- tiledb_filter_list(list(tiledb_filter("GZIP")))
attr <- tiledb_attr(name = "a1", type = "INT32",
filter_list = flt)
attr
Run the code above in your browser using DataLab