Skip to contents

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

Usage

is.anonymous(object)

# S3 method for tiledb_attr
is.anonymous(object)

Arguments

object

tiledb_attr object

Value

TRUE or FALSE

Examples

ctx <- tiledb_ctx(limitTileDBCores())
a1 <- tiledb_attr("a1", type = "FLOAT64")
is.anonymous(a1)
#> [1] FALSE

a2 <- tiledb_attr("", type = "FLOAT64")
is.anonymous(a2)
#> [1] TRUE