Determine whether arrow is able to serialize the given R object

R/arrow_data.R

arrow_enabled_object

Description

If the given R object is not serializable by arrow due to some known limitations of arrow, then return FALSE, otherwise return TRUE

Usage

 
arrow_enabled_object(object) 

Arguments

Arguments Description
object The object to be serialized

Examples

library(sparklyr)
 
 
df <- tibble::tibble(x = seq(5)) 
arrow_enabled_object(df) 
#> [1] TRUE