Learn R Programming

tiledb (version 0.30.2)

datatype,tiledb_domain-method: Returns the tiledb_domain TileDB type string

Description

Returns the tiledb_domain TileDB type string

Usage

# S4 method for tiledb_domain
datatype(object)

Value

tiledb_domain type string

Arguments

object

tiledb_domain

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(1L, 100L), type = "INT32")))
datatype(dom)
dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(0.5, 100.0), type = "FLOAT64")))
datatype(dom)

Run the code above in your browser using DataLab