
'Parquet' is a columnar storage file format. This function enables you to read Parquet files into R.
read_parquet(
file,
col_select = NULL,
as_data_frame = TRUE,
props = ParquetReaderProperties$create(),
...
)
A character file name, raw vector, or an Arrow input stream
A character vector of column names to keep, as in the
"select" argument to data.table::fread()
, or a
tidy selection specification
of columns, as used in dplyr::select()
.
Should the function return a data.frame
or an
arrow::Table?
Additional arguments passed to ParquetFileReader$create()
A arrow::Table, or a data.frame
if as_data_frame
is
TRUE
(the default).
# NOT RUN {
df <- read_parquet(system.file("v0.7.1.parquet", package="arrow"))
head(df)
# }
Run the code above in your browser using DataLab