Learn R Programming

scidb (version 1.1-2)

c-methods: Concatenate SciDB arrays

Description

Concatenate SciDB arrays along one coordinate axis.

Usage

## S3 method for class 'scidbdf':
c(x,y,`eval`=FALSE)

Arguments

x
A scidbdf object.
y
A scidbdf object with the same attribute pattern as x.
eval
(Optional) If true, execute the query. Otherwise defer evaluation.

Value

  • A scidbdf reference object.

Details

Concatenate the SciDB arrays along their single dimension. The output array will include the entries of array y below the entries of x. The input arrays must have the same number of attributes and attribute types.

Examples

Run this code
data("iris")
x <- as.scidb(iris)
c(x,x)

Run the code above in your browser using DataLab