Displaying 1 result from an estimated 1 matches for "331421".
Did you mean:
31421
2004 Dec 28
3
read.table from a list of filenames
I am wondering if it is possible to read.table repeatedly from a list
of file names into a new list of table names.
For example:
filenames <- list.files()
then with a function like
rf <- function(i) {
word??(filename[i]) <- read.table(filenames[i]) }
I can't seem to find a function like word?? that will be the object of
another operation. If this worked, then I could repeat