tiledb_ndim-tiledb_domain-method: Returns the number of dimensions of the 'tiledb_domain'

tiledb_ndim,tiledb_domain-methodR 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)


tiledb documentation built on Sept. 27, 2023, 9:06 a.m.