arrow_array | R Documentation |
Create an Arrow Array
arrow_array(x, type = NULL)
x |
An R object representable as an Arrow array, e.g. a vector, list, or |
type |
An optional data type for |
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.