Displaying 1 result from an estimated 1 matches for "01joulu2006".
2006 Dec 19
1
Problem in Dates
...9;. And the class of index(intra) is
("Chron" "Dates" "Time"). I need to put the index of this zoo object into a
data frame. So I used,
idat<-data.frame(Datetime=as.POSIXlt(index(intra),"GMT"))
But I get the values of 'idat' to be:
"01joulu2006 09:59:59"
"01joulu2006 10:09:59"
"01joulu2006 10:19:59"
"01joulu2006 10:30:00"
"01joulu2006 10:40:00"
"01joulu2006 10:50:00"
But I need the 'idat' format to be:
2006-12-01 13:30:00
2006-12-01 13:40:00
2006-12-01 13:50:00...