On Wed, 25 Jul 2018, Shawn Way wrote:

To get you start, here's a script I used to combine any number of files
into one data.frame.

library(knitr)
library(tidyverse)
library(xlsx)
library(xtable)
library(lubridate)

# create a list from these files
list.filenames<-list.files(pattern=".CSV$")  # This gets a list of all CSV files

data <- list.filenames %>%
   map(read_csv) %>%  # This reads all the files in order
   reduce(rbind)   # This combines the data into one data frame

  Thanks, Shawn. I'm reading up on functions and will look at using a
function within either a Rscript or source'd script.

  It's about time I learn to automate repeated, tedious tasks in R.

Much appreciated,

Rich

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to