Dear all,

I have the following data structure

> print(testlib)
$tags
             tag            count.raw  count.adj  err
1     aaaaaaaaaa        94         93             0.5
2     aaaaaaaaac         1           2               0.2
3     aaaaaaaaag         3           2               0.1
4     aaaaaaaaca         1           1               0.003


I want to iterate the data above and print only
"tag", "count.raw" and "count.adj" column.

Why my script below failed to do the task?


for (i in 1:nrow(testlib)) {
   cat(testlib$tags[["count.tag"]],",", testlib$tags[["count.raw"]],
",", testlib$tags[["count.adj"]],"\n")
}



- Gundala Viswanath
Jakarta - Indonesia

______________________________________________
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