read_parquet_duckdb {duckplyr} | R Documentation |
Read Parquet files using DuckDB
Description
read_parquet_duckdb()
reads a Parquet file using DuckDB's read_parquet()
table function.
Usage
read_parquet_duckdb(
path,
...,
prudence = c("thrifty", "lavish", "stingy"),
options = list()
)
Arguments
path |
Path to files, glob patterns |
... |
These dots are for future extensions and must be empty. |
prudence |
Memory protection, controls if DuckDB may convert intermediate results in DuckDB-managed memory to data frames in R memory.
The default is |
options |
Arguments to the DuckDB |
See Also
read_csv_duckdb()
, read_json_duckdb()
[Package duckplyr version 1.1.0 Index]