Considering these two time vectors:
a<-seq(as.POSIXct("2010-01-01 05:00:00"), as.POSIXct("2010-01-02 23:55:00"), by = '5 min')
b<-seq(as.POSIXct("2010-01-01 00:00:00"), as.POSIXct("2010-01-03 23:55:00"), by = '10 min')
How to get the different elements between these two vectors? I've tried:
union(setdiff(a, b), setdiff(b, a))
But the returned values are not in time format.
This uses only operations that preserve
"POSIXct"
class: