You won't generally need to call these function, but they're made available for diagnostic purposes.
arrow_available() arrow_with_dataset() arrow_with_parquet() arrow_with_s3()
TRUE or FALSE depending on whether the package was installed
with:
The Arrow C++ library (check with arrow_available())
Arrow Dataset support enabled (check with arrow_with_dataset())
Parquet support enabled (check with arrow_with_parquet())
Amazon S3 support enabled (check with arrow_with_s3())
If any of these are FALSE, see
vignette("install", package = "arrow") for guidance on reinstalling the
package.
arrow_available()#> [1] TRUEarrow_with_dataset()#> [1] TRUEarrow_with_parquet()#> [1] TRUEarrow_with_s3()#> [1] TRUE