I have filenames named ..csv and I\'d like to make graphs for each test. The best way I can see to do this is to make one R ta
..csv
Try this:
## take files. files <- list.files(pattern=".csv") ## read data using loop DF <- NULL for (f in files) { dat <- read.csv(f, header=T, sep="\t", na.strings="", colClasses="character") DF <- rbind(DF, dat) }