The SciDB array name, defaults to the R variable name if available.
dimlabel
Name the SciDB dimension.
chunkSize
The SciDB chunk size.
rowOverlap
The SciDB chunk overlap.
types
An optional vector explicitly specifying the SciDB attribute types. Length must match the number of columns of the data frame.
nullable
An optional vector indicating the SciDB nullable property of each attribute. Length must match the number of columns of the data frame.
gc
Optional logical value. If TRUE, then resulting SciDB array will be garbage-collected when the R variable referencing it is. The default value is FALSE.
Value
NULL is invisibly returned. SciDB errors are propagated as R error conditions.
Details
df2scidb is a workhorse utility function that transfers an R data frame
into a 1-D SciDB array via intermediate CSV formatting.
The columns of the data frame correspond to attributes in the SciDB array.
The iquery function returns query results using a similar method as R
data frames.