arrow (version 8.0.0)

arrow_available: Is the C++ Arrow library available?

Description

You won't generally need to call these function, but they're made available for diagnostic purposes.

Usage

arrow_available()

arrow_with_dataset()

arrow_with_substrait()

arrow_with_parquet()

arrow_with_s3()

arrow_with_json()

Arguments

Value

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())

  • JSON support enabled (check with arrow_with_json())

  • Amazon S3 support enabled (check with arrow_with_s3())

See Also

If any of these are FALSE, see vignette("install", package = "arrow") for guidance on reinstalling the package.

Examples

Run this code
# NOT RUN {
arrow_available()
arrow_with_dataset()
arrow_with_parquet()
arrow_with_json()
arrow_with_s3()
# }

Run the code above in your browser using DataLab