powered by
'Parquet' is a columnar storage file format. This function enables you to read Parquet files into R.
read_parquet(file, col_select = NULL, as_tibble = TRUE, props = parquet_arrow_reader_properties(), ...)
A character path to a local file, or an Arrow input stream
A tidy selection specification of columns, as used in dplyr::select().
dplyr::select()
Should the function return a data.frame or an arrow::Table?
data.frame
reader file properties, as created by parquet_arrow_reader_properties()
parquet_arrow_reader_properties()
additional parameters
A arrow::Table, or a data.frame if as_tibble is TRUE.
as_tibble
TRUE
# NOT RUN { try({ df <- read_parquet(system.file("v0.7.1.parquet", package="arrow")) }) # }
Run the code above in your browser using DataLab