i want to generate a new data with five columns using a slinding window of 5 from the main dataset.
my desired output resluts:
dataset
disp1 disp2 disp3
-2.5 -4.8 -1.4
1.3 0.6 3.1
-1.7 -6.4 -1.7
-8.9 9.7 -5.3
-5 -3.1 -1.1
-4.8 -5.7 -0.1
-7.7 -4.4 -3.7
3.4 1.8 15.5
14.2 3.5 7.2
-10.2 5.4 -8.6
desired results:
newdata
I II III IV Output
-2.5 1.3 -1.7 -8.9 -5
1.3 -1.7 -8.9 -5 -4.8
-1.7 -8.9 -5 -4.8 -7.7
-8.9 -5 -4.8 -7.7 3.4
-5 -4.8 -7.7 3.4 14.2
-4.8 -7.7 3.4 14.2 -10.2
-7.7 3.4 14.2 -10.2 -4.8
3.4 14.2 -10.2 -4.8 0.6
14.2 -10.2 -4.8 0.6 -6.4
-10.2 -4.8 0.6 -6.4 9.7
-4.8 0.6 -6.4 9.7 -3.1
0.6 -6.4 9.7 -3.1 -5.7
-6.4 9.7 -3.1 -5.7 -4.4
9.7 -3.1 -5.7 -4.4 1.8
-3.1 -5.7 -4.4 1.8 3.5
-5.7 -4.4 1.8 3.5 5.4
-4.4 1.8 3.5 5.4 -1.4
1.8 3.5 5.4 -1.4 3.1
3.5 5.4 -1.4 3.1 -1.7
5.4 -1.4 3.1 -1.7 -5.3
-1.4 3.1 -1.7 -5.3 -1.1
3.1 -1.7 -5.3 -1.1 -0.1
-1.7 -5.3 -1.1 -0.1 -3.7
-5.3 -1.1 -0.1 -3.7 15.5
-1.1 -0.1 -3.7 15.5 7.2
-0.1 -3.7 15.5 7.2 -8.6
i tried using mutate and for loop but i was not able to get the desired results
Steps:
vapply()
: from the first to thesize minus 1
-th index, get the nextsize
values from the vector.vapply()
gives us a wide matrix, when we want a long one.Output:
Data: