tiledb_array | R Documentation |
tiledb_array returns a new object. This class is experimental.
tiledb_array(
uri,
query_type = c("READ", "WRITE"),
is.sparse = NA,
attrs = character(),
extended = TRUE,
selected_ranges = list(),
selected_points = list(),
query_layout = character(),
datetimes_as_int64 = FALSE,
encryption_key = character(),
query_condition = new("tiledb_query_condition"),
timestamp_start = as.POSIXct(double(), origin = "1970-01-01"),
timestamp_end = as.POSIXct(double(), origin = "1970-01-01"),
return_as = get_return_as_preference(),
query_statistics = FALSE,
strings_as_factors = getOption("stringsAsFactors", FALSE),
keep_open = FALSE,
sil = list(),
dumpbuffers = character(),
buffers = list(),
ctx = tiledb_get_context(),
as.data.frame = FALSE
)
tiledb_dense(...)
tiledb_sparse(...)
uri |
uri path to the tiledb dense array |
query_type |
optionally loads the array in "READ" or "WRITE" only modes. |
is.sparse |
optional logical switch, defaults to "NA" letting array determine it |
attrs |
optional character vector to select attributes, default is
empty implying all are selected, the special value |
extended |
optional logical switch selecting wide ‘data.frame’
format, defaults to |
selected_ranges |
optional A list with matrices where each matrix i describes the (min,max) pair of ranges selected for dimension i |
selected_points |
optional A list with vectors where each vector i describes the points selected in dimension i |
query_layout |
optional A value for the TileDB query layout, defaults to an empty character variable indicating no special layout is set |
datetimes_as_int64 |
optional A logical value selecting date and datetime value
representation as ‘raw’ |
encryption_key |
optional A character value with an AES-256 encryption key in case the array was written with encryption. |
query_condition |
optional |
timestamp_start |
optional A POSIXct Datetime value determining the inclusive time point at which the array is to be openened. No fragments written earlier will be considered. |
timestamp_end |
optional A POSIXct Datetime value determining the inclusive time point until which the array is to be openened. No fragments written earlier later be considered. |
return_as |
optional A character value with the desired |
query_statistics |
optional A logical value, defaults to ‘FALSE’; if ‘TRUE’ the query statistics are returned (as a JSON string) via the attribute ‘query_statistics’ of the return object. |
strings_as_factors |
An optional logical to convert character columns to factor type; defaults
to the value of |
keep_open |
An optional logical to not close after read or write |
sil |
optional A list, by default empty to store schema information when query objects are parsed. |
dumpbuffers |
An optional character variable with a directory name (relative to
|
buffers |
An optional list with full pathnames of shared memory buffers to read data from |
ctx |
optional tiledb_ctx |
as.data.frame |
An optional deprecated alternative to |
... |
Used as a pass-through for |
tiledb_array object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.