Re: [R] reading row title

2014-03-19 Thread arun
Hi, dat <- read.table(text="Date   A    B   C    D 1-Jan-61   0.00  1.27   8.128  0.25 2-Jan-61 6.10 9.144 94.742 15.49 3-Jan-61  0.00 0.508  1.27 0.00 4-Jan-61  0.00  0  NA 0.00 5-Jan-61  0.00  0  0 0.00 6-Jan-61   0.00  NA  0 0.00 7-Jan-61  0.00  0  0 0.00 8-Jan-61  0.00  NA  0 0.00 9-Jan-61  0.

Re: [R] reading row title

2014-03-19 Thread eliza botto
uot;Date", "A", "B", "C", "D"), class = "data.frame", row.names = c(NA, -10L)) > dput(res) structure(list(A = c("", "", ""), B = c("6-Jan-61", "8-Jan-61", "9-Jan-61"), C = c("

[R] reading row title

2014-03-19 Thread eliza botto
Dear R-Family, I have a data-set of the following format. I am only presenting a part of it. DateA B C D 1-Jan-61 0.00 1.27 8.128 0.25 2-Jan-61 6.10 9.144 94.742