I am trying to run the commands on the 'vrtest' package over rolling windows. I can run them perfectly on one set of data but I am having difficultly on using the rollapply function from the 'zoo' package. Say for instance my data is a dataframe x, where the variable is y and I want to roll over 10 observations at time. I have 30 observations so I should have 21 outputs for JR1, JR2 and JS1. So for instance, if I am trying to run a rolling joint wright test, the furthest I have got it;
JWroll <- rollapply(x$y, 10, function(x){
x<- Joint.Wright(x$y, kvec)}
I know I need to define the 'kvec' somewhere within the brackets but I haven't got it to work yet. The data is;
10
10
8
5
10
2
8
2
10
2
8
8
10
10
8
5
10
8
8
12
10
7
8
7
8
1
8
5
10
2
Any advice or help with this would be greatly appreciated!
The function in
rollapply
must return a scalar or a plain vector, not a list. Try this:giving: