search for: afdh0

Displaying 1 result from an estimated 1 matches for "afdh0".

2007 Oct 13
1
Controlling values in read.table
I have this code: list1 <- list() for (i in list.files(pattern=".*c02.*AFDH0.*")){ x <- read.table(i,skip=20,fill=TRUE) list1[[i]] <- x } Somehow I would like the read.table function to read only values in each file that are over a certain limit, say >1. Is this the easiest way or is it better to tamper with 'list1' when it's done? -- View...