search for: rainfall_data

Displaying 1 result from an estimated 1 matches for "rainfall_data".

2005 May 11
2
time zones, daylight saving etc.
...2003 10:21 0 15/03/2003 12:02 0 16/03/2003 06:10 0 16/03/2003 06:20 0.5 16/03/2003 06:30 0 16/03/2003 06:40 0 16/03/2003 06:50 0 18/03/2003 20:10 0.5 etc. (times given on a 24 hour clock) and goes on for years. I have some code: data<-read.table("H:/rainfall_data.txt",h=T) library(survival) datetime <- as.POSIXct(strptime(paste(data$V1, data$V2), "%d/%m/%Y %H:%M"), tz="NZST") which produces: [10] "2003-03-13 21:13:00 New Zealand Daylight Time" [11] "2003-03-15 13:20:00 New Zealand Daylight Time" [12] &quo...