Learn R Programming

tiledb (version 0.30.2)

is.anonymous: Returns TRUE if the tiledb_dim is anonymous

Description

A TileDB attribute is anonymous if no name/label is defined

Usage

is.anonymous(object)

# S3 method for tiledb_attr is.anonymous(object)

Value

TRUE or FALSE

Arguments

object

tiledb_attr object

Examples

Run this code
ctx <- tiledb_ctx(limitTileDBCores())
a1 <- tiledb_attr("a1", type = "FLOAT64")
is.anonymous(a1)

a2 <- tiledb_attr("", type = "FLOAT64")
is.anonymous(a2)

Run the code above in your browser using DataLab