Learn R Programming

arrow (version 0.14.1)

write_parquet: Write Parquet file to disk

Description

Parquet is a columnar storage file format. This function enables you to write Parquet files from R.

Usage

write_parquet(table, file)

Arguments

table

An arrow::Table, or an object convertible to it

file

a file path

Examples

Run this code
# NOT RUN {
try({
  tf <- tempfile(fileext = ".parquet")
  on.exit(unlink(tf))
  write_parquet(tibble::tibble(x = 1:5), tf)
})
# }

Run the code above in your browser using DataLab