I am trying to produce a sequence of dates at hourly intervals. As an example I tried the following:
> seq(as.Date(\"1912-02-24 23:00:00\"), as.Date(\"191
Well, don't you give the answer yourself ;-)
What about:
seq(as.POSIXct("1912-02-24 23:00:00"), as.POSIXct("1912-02-25 08:32:00"), by="hour")
(also works with as.POSIXlt).
as.POSIXlt