Re: [R] Batch mode questions.

2018-07-25 Thread Rich Shepard
On Wed, 25 Jul 2018, David Winsemius wrote: # create a list from these files list.filenames<-list.files(pattern=".CSV$") # This gets a list of all CSV files It would get all the files with all caps "CSV" anywhere within the file name, but it would not get any files with an extension ".csv", n

Re: [R] Batch mode questions.

2018-07-25 Thread David Winsemius
> On Jul 25, 2018, at 2:54 PM, Rich Shepard wrote: > > 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

Re: [R] Batch mode questions.

2018-07-25 Thread Rich Shepard
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$") #