On Wed, Oct 28, 2009 at 9:38 AM, Sybille Wendel
wrote:
> Dear all,
>
> I have a lot of data files (.txt) that I want to read in all at once, if
> possible.
> the files have names in time system. for example: RA940101, RA940102,
> RA940103, RA940104 an so on.
> (meaning: RA, year:91, month: here ja
Hi,
Try this,
files <- paste("RA94010",1:3,sep="")
# or files <- list.files(pattern = "RA94010")
list.of.data <- lapply(files, read.table, header=F)
# if required, collapse into a single data.frame
do.call(rbind, list.of.data)
HTH,
baptiste
2009/10/28 Sybille Wendel :
> Dear all,
>
> I have
Dear all,
I have a lot of data files (.txt) that I want to read in all at once, if
possible.
the files have names in time system. for example: RA940101, RA940102,
RA940103, RA940104 an so on.
(meaning: RA, year:91, month: here january, day of the month.)
I tried something like
vektor <- c("RA940
3 matches
Mail list logo