if the file is really large, reading it twice may add considerable penalty:

r...@quantide.com wrote:
> Something like this should work
>
> library(R.utils)
> out = numeric()
> qr = c("AAC", "ATT")
> n =countLines("test.txt")

# 1st pass

> file = file("test.txt", "r")
> for (i in 1:n){

# 2nd pass

> line = readLines(file, n = 1)
> A = strsplit (line, split = " ")[[1]][1]
> if(is.element(A, qr)) {
> value = as.numeric(strsplit (line, split = " ")[[1]][2])
> out = c(out, value)
> }
> }

if this is a one-go task, counting the lines does not pay, and why
bother.  if this is a repetitive task, a database-based solution will
probably be a better idea.

vQ

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to