i would like to generate sequence of dates with next code:
vm1=strptime("2000-01-01 00:00:00", format="%Y-%m-%d %H:%M:%S")
vm2=strptime("2011-12-31 23:55:00", format="%Y-%m-%d %H:%M:%S")
vm3=seq(vm1, vm2, by = min(300))
The problem is that on some specific date program changes time zone and omits part of generated data. For example:
vm3[24500:24510]
I would appreciate any help or instructions.
See Question&Answers more detail:os