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
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
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
3 matches
Mail list logo