tiledb_ndim,tiledb_domain-method {tiledb} | R Documentation |
Returns the number of dimensions of the tiledb_domain
Description
Returns the number of dimensions of the tiledb_domain
Usage
## S4 method for signature 'tiledb_domain'
tiledb_ndim(object)
Arguments
object |
tiledb_domain |
Value
integer number of dimensions
Examples
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64")))
tiledb_ndim(dom)
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64"),
tiledb_dim("d2", c(0.5, 100.0), type = "FLOAT64")))
tiledb_ndim(dom)
[Package tiledb version 0.29.0 Index]