I have a vector
vec <- c(1,2,3,4,5)
What is the best way to retrieve all subvectors of a given length? For example, all subvectors with the length 3 would be:
1,2,3
2,3,4
3,4,5
Thank you for your help!
See Question&Answers more detail:os