attrs,tiledb_array_schema,ANY-method | R Documentation |
tiledb_attr
objects associated with the tiledb_array_schema
Returns a list of all tiledb_attr
objects associated with the tiledb_array_schema
## S4 method for signature 'tiledb_array_schema,ANY'
attrs(object, idx, ...)
object |
tiledb_array_schema |
idx |
index argument, currently unused. |
... |
Extra parameter for method signature, currently unused. |
a list of tiledb_attr objects
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")))
attrs(sch)
lapply(attrs(sch), datatype)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.