arrow_array: Create an Arrow Array

arrow_arrayR Documentation

Create an Arrow Array

Description

Create an Arrow Array

Usage

arrow_array(x, type = NULL)

Arguments

x

An R object representable as an Arrow array, e.g. a vector, list, or data.frame.

type

An optional data type for x. If omitted, the type will be inferred from the data.

Examples

my_array <- arrow_array(1:10)

# Compare 2 arrays
na_array <- arrow_array(c(1:5, NA))
na_array2 <- na_array
na_array2 == na_array # element-wise comparison

arrow documentation built on Nov. 25, 2023, 1:09 a.m.