Learn R Programming

arrow (version 8.0.0)

concat_arrays: Concatenate zero or more Arrays

Description

Concatenates zero or more Array objects into a single array. This operation will make a copy of its input; if you need the behavior of a single Array but don't need a single object, use ChunkedArray.

Usage

concat_arrays(..., type = NULL)

# S3 method for Array c(...)

Arguments

...

zero or more Array objects to concatenate

type

An optional type describing the desired type for the final Array.

Value

A single Array

Examples

Run this code
# NOT RUN {
concat_arrays(Array$create(1:3), Array$create(4:5))
# }

Run the code above in your browser using DataLab