I am given a dataset of 10 hour length (36.000 time points, 1 second=1 time point). For my further analysis I am supposed to use 10min averaged data which would equal 600 time points. So do I understand this right that I have to take the average of the first 600 time points and thats my new time point and then of the next 600 and so on? Which means I end up with a time series of length 60.
How do I do that with R? I thought
xF<-filter(x, 600, sides = 2)
would be the required function but it just changes the values on the y axis.