Package 'parqr'

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

Help Index


Read a multi-part parquet file in as a data.frame

Description

Read a multi-part parquet file in as a data.frame

Usage

parquet_readr(path, verbose = FALSE)

Arguments

path

The path to the directory where the file is stored.

verbose

Used for debugging the path string.

Value

A single dataframe of your multi-part parquet.

Examples

## Not run: 
# parquet_readr(path=path/to/your/parquet.parquet)


## End(Not run)

parquet_readr_list

Description

parquet_readr_list

Usage

parquet_readr_list(path, verbose = FALSE)

Arguments

path

The path to the directory where the file is stored.

verbose

For debugging the path string.

Value

A list of dataframes.

Examples

## Not run: 
# parquet_readr_list(path=path/to/your/parquet.parquet)


## End(Not run)