Nothing
#' parquet_readr_list
#'
#' @param path The path to the directory where the file is stored.
#' @param verbose For debugging the path string.
#'
#' @return A list of dataframes.
#' @export
#'
#' @examples \dontrun{
#' # parquet_readr_list(path=path/to/your/parquet.parquet)
#'
#' }
parquet_readr_list = function(path,verbose=FALSE) {
path_string = paste0(path,"/part-*.parquet")
if(verbose) print(Sys.glob(path_string))
df = Sys.glob(path_string) %>%
purrr::map(~ arrow::read_parquet(.x))
return(df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.