Re: [R] Read many cvs files

2013-01-02 Thread Yuan, Rebecca
holtman Sent: Wednesday, January 02, 2013 11:58 AM To: Dominic Roye Cc: R help Subject: Re: [R] Read many cvs files You can read the files into a "list" -- you don't want to create unique object names for each one. files <- list.files(..pattern to match files..) results <- lapp

Re: [R] Read many cvs files

2013-01-02 Thread jim holtman
for those > three sheets? > > Thanks, > > Rebecca > > > -Original Message- > From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On > Behalf Of jim holtman > Sent: Wednesday, January 02, 2013 11:58 AM > To: Dominic Roye > Cc: R hel

Re: [R] Read many cvs files

2013-01-02 Thread jim holtman
You can read the files into a "list" -- you don't want to create unique object names for each one. files <- list.files(..pattern to match files..) results <- lapply(files, read.table, header = TRUE) On Wed, Jan 2, 2013 at 10:14 AM, Dominic Roye wrote: > Hello R helpers, > > I would like to aut