Hi, how to read Time value from R,
using R i have such a table:
2013-05-25 17.5 0 0 1
2013-05-25 17.5 0 0 1
2013-05-25 17.5 0 0 1
2013-05-25 16.8 0 0 1
2013-05-26 18.2 0 0 1
2013-05-26 17.5 0 0 1
but when I read it from r.net this way:
c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ..
c(17.5, 17.5 17.5, 16.8, 18.2, 17.5, 17.5, 17.5, 17.5, 17.5
c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
so first row should be data, but are just some numbers, so how can I read this ?
using R i have such a table:
2013-05-25 17.5 0 0 1
2013-05-25 17.5 0 0 1
2013-05-25 17.5 0 0 1
2013-05-25 16.8 0 0 1
2013-05-26 18.2 0 0 1
2013-05-26 17.5 0 0 1
but when I read it from r.net this way:
c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ..
c(17.5, 17.5 17.5, 16.8, 18.2, 17.5, 17.5, 17.5, 17.5, 17.5
c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
so first row should be data, but are just some numbers, so how can I read this ?