Type: Package
Title: Read in Multi-Part Parquet Files
Version: 0.1.0
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.
URL: https://github.com/jhnwllr/parqr
License: CC0
BugReports: https://github.com/jhnwllr/parqr/issues
Encoding: UTF-8
RoxygenNote: 7.1.1
Language: en-US
Imports: purrr, arrow, magrittr
Suggests: testthat (≥ 3.0.0), knitr, rmarkdown
Config/testthat/edition: 3
VignetteBuilder: knitr
NeedsCompilation: no
Packaged: 2021-07-14 12:31:05 UTC; ftw712
Author: John Waller [aut, cre]
Maintainer: John Waller <jhnwllr@gmail.com>
Repository: CRAN
Date/Publication: 2021-07-15 07:50:09 UTC

Pipe operator

Description

See magrittr::%>% for details.

Arguments

lhs

A value or the magrittr placeholder.

rhs

A function call using the magrittr semantics.

Value

The result of calling 'rhs(lhs)'.


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)