Is there a function that let me thin out my data (time-series as zoo)?
The Example would be
mytime<-as.POSIXct(paste("2013-07-09 12:", c(1:59), sep=""))
mydata<-EuStockMarkets[1:59]
myts<-zoo(mydata, mytime)
I search a function that returns an irregular timeseries with just those data, that are different to the previous timestep by lets say ten points.
Any idea with zoo??
Thank you
Bastian