is.anonymous.tiledb_dim | R Documentation |
A TileDB dimension is anonymous if no name/label is defined
## S3 method for class 'tiledb_dim'
is.anonymous(object)
object |
|
TRUE or FALSE
d1 <- tiledb_dim("d1", c(1L, 10L), 10L)
is.anonymous(d1)
d2 <- tiledb_dim("", c(1L, 10L), 10L)
is.anonymous(d2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.