Title: | Read in Multi-Part Parquet Files |
---|---|
Description: | Reads in multi-part parquet files. Will read in parquet files that have not been previously coalesced into one file. Convenient for reading in moderately sized, but split files. |
Authors: | John Waller [aut, cre] |
Maintainer: | John Waller <[email protected]> |
License: | CC0 |
Version: | 0.1.0 |
Built: | 2025-03-07 03:49:04 UTC |
Source: | https://github.com/jhnwllr/parqr |
Read a multi-part parquet file in as a data.frame
parquet_readr(path, verbose = FALSE)
parquet_readr(path, verbose = FALSE)
path |
The path to the directory where the file is stored. |
verbose |
Used for debugging the path string. |
A single dataframe of your multi-part parquet.
## Not run: # parquet_readr(path=path/to/your/parquet.parquet) ## End(Not run)
## Not run: # parquet_readr(path=path/to/your/parquet.parquet) ## End(Not run)
parquet_readr_list
parquet_readr_list(path, verbose = FALSE)
parquet_readr_list(path, verbose = FALSE)
path |
The path to the directory where the file is stored. |
verbose |
For debugging the path string. |
A list of dataframes.
## Not run: # parquet_readr_list(path=path/to/your/parquet.parquet) ## End(Not run)
## Not run: # parquet_readr_list(path=path/to/your/parquet.parquet) ## End(Not run)