I'd like to calculate something similar to a rolling mean or moving average but without doing so via a sliding window. As an example, for the following set of numbers, I'd want the averages shown below the groups of 5:
1,2,3,4,5,1,2,4,5,6,7,8,1,2,3,1,1,3,2,1
| 3 | 3.6 | 4.2 | 1.6 | //mean of every 5 numbers
I know of the movingAverages available in the TTR lib, and the rollmean function which both use sliding windows, so it's reasonably straightforward to do something like this:
d <- c(1,2,3,4,5,1,2,4,5,6,7,8,1,2,3,1,1,3,2,1)
m <- rollmean(d,5)
m[seq(1,length(m),5)]
> [1] 3.0 3.6 4.2 1.6
But I've got a large dataset and there must be a more efficient way of calculating this... any ideas? I assume there's a function that will do exactly this but I can't think what this type of average is called.