powered by
Parquet is a columnar storage file format. This function enables you to write Parquet files from R.
write_parquet(table, file)
An arrow::Table, or an object convertible to it
a file path
# 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