This is an attempt to provide greater flexibility in csv_to_parquet, allowing users to be explicit about which delimiters to use, or if comments are present in the csv etc. I first considered simply adding the delim and comment args to csv_to_parquet as this would have been very straight forward, but instead attempted this more general solution.
This is the first time I contribute to an R packed, and I have not used testthat or roxygen2 previously. Do let me know if there are any additional changes that need to happen.
This is an attempt to provide greater flexibility in
csv_to_parquet
, allowing users to be explicit about which delimiters to use, or if comments are present in the csv etc. I first considered simply adding thedelim
andcomment
args tocsv_to_parquet
as this would have been very straight forward, but instead attempted this more general solution.This is the first time I contribute to an R packed, and I have not used
testthat
orroxygen2
previously. Do let me know if there are any additional changes that need to happen.