Skip to content
Prev 177280 / 398506 Next

Reading in a large number of dbf files

A process like the following is how I would do it:

inputData <- lapply(listOfFiles, function(.file){
    input <- read.table(.file, ....whatever other parameters...)
    # now do the modifications that you need
    ....
    input  # return the updated dataframe
})

# combine into one dataframe
inputData <- do.call(rbind, inputData)
On Thu, Apr 16, 2009 at 10:35 AM, <Steve_Friedman at nps.gov> wrote: