View source: R/read_many_files.R
read_many_csvs | R Documentation |
This accepts a directory. It will load every csv
or csv.gz
in that folder and attempt to row-bind them together. You can alternately specify a list of files if you don't want everything in the folder. This is designed for use with the normalization and home-summary files as downloaded from AWS.
read_many_csvs( dir = ".", recursive = TRUE, filelist = NULL, makedate = FALSE, ... )
dir |
Name of the directory the files are in. |
recursive |
Search in all subdirectories as well. |
filelist |
Optionally specify only a subset of the filename to read in (can contain paths). |
makedate |
Use |
... |
Other arguments to pass to |
## Not run: # The current working directory contains all the normalization .csv files normalization <- read_many_csvs(makedate = TRUE) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.