I have a time series
mainTimeSeries <- data.frame(time=seq(as.POSIXct("2012/1/1"), as.POSIXct("2012/1/5"), "hour"), value=sample(1:10, 1))
I want to filter out all the data which is present in another series
badTimeSeries<-data.frame(startTime=seq(as.POSIXct("2012/1/3"), as.POSIXct("2012/1/4"), "hour"))
badTimeSeries$endTime <- badTimeSeries$startTime + 1800
Is there an existing function to filter out dates ? The results should be such that no element of mainTimeSeries should be between startTime and endTime of badTimeSeries.
endTimecolumn. Also,mainTimeSeriesis just a vector of times. Did you mean for it to be some sort of time series object? – GSee Aug 22 '12 at 2:06