tiledb_array_create | R Documentation |
Creates a new TileDB array given an input schema.
tiledb_array_create(uri, schema, encryption_key)
uri |
URI specifying path to create the TileDB array object |
schema |
tiledb_array_schema object |
encryption_key |
optional A character value with an AES-256 encryption key in case the array should be encryption. |
## Not run:
pth <- tempdir()
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_array_create(pth, sch)
tiledb_object_type(pth)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.