dim.tiledb_array_schema: Retrieve the dimension (domain extent) of the domain

View source: R/ArraySchema.R

dim.tiledb_array_schemaR Documentation

Retrieve the dimension (domain extent) of the domain

Description

Only valid for integral (integer) domains

Usage

## S3 method for class 'tiledb_array_schema'
dim(x)

Arguments

x

tiledb_array_schema

Value

a dimension vector

Examples


dom <- tiledb_domain(dims = c(tiledb_dim("d1", c(1L, 10L), type = "INT32")))
sch <- tiledb_array_schema(dom, attrs = c(tiledb_attr("a1", type = "INT32"),
                                          tiledb_attr("a2", type = "FLOAT64")))
dim(sch)


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